Binato/server/enums/SlotStatus.ts
2022-11-23 00:48:28 +00:00

9 lines
No EOL
127 B
TypeScript

export enum SlotStatus {
Empty = 1,
Locked = 2,
NotReady = 4,
Ready = 8,
MissingBeatmap = 16,
Playing = 32,
Quit = 128
}