mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 05:42:19 +08:00
14 lines
195 B
PHP
Executable File
14 lines
195 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class PlayerWillBeAdded extends Event
|
|
{
|
|
public $playerName;
|
|
|
|
public function __construct($playerName)
|
|
{
|
|
$this->playerName = $playerName;
|
|
}
|
|
}
|