Spooky/src/Ad5001/Spooky/sounds/TheReturnMusicPlay.php

15 lines
359 B
PHP
Raw Normal View History

2017-10-28 23:06:47 +00:00
<?php
namespace Ad5001\Spooky\sounds;
use pocketmine\math\Vector3;
use pocketmine\network\mcpe\protocol\LevelEventPacket;
use pocketmine\level\sound\GenericSound;
class TheReturnMusicPlay extends GenericSound{
public function __construct(Vector3 $pos, $pitch = 1){
parent::__construct($pos, LevelEventPacket::EVENT_SOUND_ARMOR_STAND_HIT, $pitch);
}
}