blessing-skin-server/app/Events/PlayerProfileUpdated.php
2019-12-14 11:10:37 +08:00

21 lines
292 B
PHP

<?php
namespace App\Events;
use App\Models\Player;
class PlayerProfileUpdated extends Event
{
public $player;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Player $player)
{
$this->player = $player;
}
}