blessing-skin-server/app/Events/PlayerRetrieved.php
2019-04-23 23:34:04 +08:00

16 lines
208 B
PHP

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