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