blessing-skin-server/app/Events/PlayerWillBeAdded.php
2018-02-16 16:29:37 +08:00

20 lines
308 B
PHP

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