bang/backend/globals.py
2024-06-10 17:22:30 +01:00

18 lines
204 B
Python

from enum import IntEnum
class G:
sio = None
def __init__(self):
pass
class PendingAction(IntEnum):
PICK = 0
DRAW = 1
PLAY = 2
RESPOND = 3
WAIT = 4
CHOOSE = 5