mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 11:45:18 -05:00
17 lines
401 B
PHP
17 lines
401 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game\Matchmaking;
|
|
|
|
enum QueueStatus: string
|
|
{
|
|
case PendingOnline = 'PendingOnline';
|
|
case Online = 'Online';
|
|
case PendingWarparty = 'PendingWarparty';
|
|
case Queued = 'Queued';
|
|
case Matched = 'Matched';
|
|
case Failed = 'Failed';
|
|
case ServerFull = 'ServerFull';
|
|
case FriendNotPlaying = 'FriendNotPlaying';
|
|
case WarpartyFull = 'WarpartyFull';
|
|
}
|