mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 06:47:22 +08:00
14 lines
194 B
PHP
14 lines
194 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class PlayerWasDeleted extends Event
|
||
|
{
|
||
|
public $playerName;
|
||
|
|
||
|
public function __construct($playerName)
|
||
|
{
|
||
|
$this->playerName = $playerName;
|
||
|
}
|
||
|
}
|