mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
21 lines
481 B
PHP
21 lines
481 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game\Matchmaking;
|
|
|
|
enum MatchStatus: string
|
|
{
|
|
case None = 'None';
|
|
case NoMatch = 'NoMatch';
|
|
case Created = 'Created';
|
|
case Creating = 'Creating';
|
|
case DelayedCreation = 'DelayedCreation';
|
|
case Opened = 'Opened';
|
|
case Completed = 'Completed';
|
|
case Timedout = 'Timedout';
|
|
case Closing = 'Closing';
|
|
case Closed = 'Closed';
|
|
case Killing = 'Killing';
|
|
case Killed = 'Killed';
|
|
case Destroyed = 'Destroyed';
|
|
}
|