Files
Vari fa3d97354b More work on the Matchmaking logic
Now players get added to the queue and the controller tries to create matches when enough matching players are in the Queue.
2024-03-09 12:26:15 +01:00

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;
}