mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-10 04:05:22 -05:00
Now players get added to the queue and the controller tries to create matches when enough matching players are in the Queue.
18 lines
320 B
PHP
18 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Matchmaking;
|
|
|
|
use App\Enums\Game\Matchmaking\MatchStatus;
|
|
use App\Enums\Game\Matchmaking\QueueStatus;
|
|
use App\Models\Game\Matchmaking\MatchConfiguration;
|
|
|
|
class QueueResponse
|
|
{
|
|
public QueueStatus $status;
|
|
|
|
public QueueData $queueData;
|
|
|
|
public MatchData $matchData;
|
|
}
|
|
|