Sourcecode

Liveparticle/de/themarcraft/partikel/Rot.php


Rot.php

<?php

namespace de\themarcraft\partikel;

use de\themarcraft\partikel\Partikel;

class Rot extends Partikel
{
    function __construct(int $id, Position $position)
    {
        parent::__construct($id, Types::RED, $position);
    }
}