pocketmine\level\particle\MobSpawnParticle::__construct PHP Метод

__construct() публичный Метод

public __construct ( Vector3 $pos, $width, $height )
$pos pocketmine\math\Vector3
    public function __construct(Vector3 $pos, $width = 0, $height = 0)
    {
        parent::__construct($pos->x, $pos->y, $pos->z);
        $this->width = $width;
        $this->height = $height;
    }
MobSpawnParticle