mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-03-14 16:01:44 +08:00
14 lines
195 B
PHP
14 lines
195 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class PlayerWillBeAdded extends Event
|
||
|
{
|
||
|
public $playerName;
|
||
|
|
||
|
public function __construct($playerName)
|
||
|
{
|
||
|
$this->playerName = $playerName;
|
||
|
}
|
||
|
}
|