mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 11:45:18 -05:00
10 lines
125 B
PHP
10 lines
125 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game\Matchmaking;
|
|
|
|
enum MatchmakingSide: string
|
|
{
|
|
case Hunter = 'A';
|
|
case Runner = 'B';
|
|
}
|