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

16 lines
213 B
PHP
Executable File

<?php
namespace App\Events;
use App\Models\Player;
class PlayerProfileUpdated extends Event
{
public $player;
public function __construct(Player $player)
{
$this->player = $player;
}
}