mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game\Leaderboard;
|
|
|
|
enum Window : int
|
|
{
|
|
case PersonalBest = 4;
|
|
case Lobby = 0;
|
|
}
|