blessing-skin-server/app/Events/CheckPlayerExists.php

20 lines
308 B
PHP
Raw Normal View History

<?php
namespace App\Events;
class CheckPlayerExists extends Event
{
2018-02-16 16:25:35 +08:00
public $playerName;
/**
* Create a new event instance.
*
2018-02-16 16:25:35 +08:00
* @param string $playerName
* @return void
*/
2018-02-16 16:25:35 +08:00
public function __construct($playerName)
{
2018-02-16 16:25:35 +08:00
$this->playerName = $playerName;
}
}