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