mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 11:15:09 -05:00
14 lines
236 B
PHP
14 lines
236 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Matchmaking;
|
|
|
|
use App\Enums\Game\ExperienceEventType;
|
|
|
|
class ExperienceEvent
|
|
{
|
|
public function __construct(
|
|
public ExperienceEventType $type,
|
|
public int $amount,
|
|
)
|
|
{ }
|
|
} |