TDoG-Skin/app/Events/PlayerWasDeleted.php
2024-08-17 19:13:54 +08:00

14 lines
194 B
PHP
Executable File

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