Binato/server/enums/SlotStatus.ts

9 lines
127 B
TypeScript
Raw Permalink Normal View History

2022-11-21 23:26:20 +00:00
export enum SlotStatus {
2022-11-23 00:48:28 +00:00
Empty = 1,
Locked = 2,
NotReady = 4,
Ready = 8,
MissingBeatmap = 16,
Playing = 32,
Quit = 128
2022-11-21 23:26:20 +00:00
}