blessing-skin-server/app/Events/PlayerWasDeleted.php
2020-06-24 15:25:36 +08:00

14 lines
194 B
PHP

<?php
namespace App\Events;
class PlayerWasDeleted extends Event
{
public $playerName;
public function __construct($playerName)
{
$this->playerName = $playerName;
}
}