blessing-skin-server/app/Events/PlayerWasDeleted.php

20 lines
276 B
PHP
Raw Normal View History

2016-11-07 22:16:27 +08:00
<?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;
}
}