mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
20 lines
308 B
PHP
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;
|
|
}
|
|
}
|