blessing-skin-server/app/Events/PlayerWasDeleted.php
2016-11-07 22:16:27 +08:00

20 lines
276 B
PHP

<?php
namespace App\Events;
class PlayerWasDeleted extends Event
{
public $playerName;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($player_name)
{
$this->playerName = $player_name;
}
}