mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 13:52:19 +08:00
16 lines
212 B
PHP
Executable File
16 lines
212 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Player;
|
|
|
|
class PlayerWillBeDeleted extends Event
|
|
{
|
|
public $player;
|
|
|
|
public function __construct(Player $player)
|
|
{
|
|
$this->player = $player;
|
|
}
|
|
}
|