blessing-skin-server/app/Events/PlayerWillBeAdded.php
2019-12-14 11:10:37 +08:00

21 lines
314 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;
}
}