mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 19:25:10 -05:00
22 lines
515 B
PHP
22 lines
515 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player;
|
|
|
|
use App\Http\Responses\Api\General\Reward;
|
|
|
|
class GetQuitterStateResponse
|
|
{
|
|
/** @var Reward[] */
|
|
public array $stayMatchStreakRewards = [];
|
|
|
|
public function __construct(
|
|
public int $strikeRefreshTime,
|
|
public int $strikeLeft,
|
|
public int $stayMatchStreak,
|
|
public int $stayMatchStreakPrevious,
|
|
public bool $hasQuitOnce,
|
|
public int $quitMatchStreak,
|
|
public int $quitMatchStreakPrevious,
|
|
)
|
|
{}
|
|
} |