mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 06:57:24 +08:00
16 lines
207 B
PHP
16 lines
207 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\Models\Player;
|
||
|
|
||
|
class PlayerWasAdded extends Event
|
||
|
{
|
||
|
public $player;
|
||
|
|
||
|
public function __construct(Player $player)
|
||
|
{
|
||
|
$this->player = $player;
|
||
|
}
|
||
|
}
|