mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
24 lines
346 B
PHP
24 lines
346 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class CheckPlayerExists extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $player_name;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($player_name)
|
|
{
|
|
$this->player_name = $player_name;
|
|
}
|
|
|
|
}
|