mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
10 lines
139 B
Python
10 lines
139 B
Python
|
import enum
|
||
|
|
||
|
|
||
|
class MatchmakingStatus(enum.IntEnum):
|
||
|
WAIT_FOR_ME = 1
|
||
|
READY = 2
|
||
|
MAYBE = 3
|
||
|
SOMEONE_ELSE = 4
|
||
|
IGNORED = -1
|