Language bitmask enum

Going to be used in future for server configuration
This commit is contained in:
Ben 2019-05-29 22:45:22 +01:00
parent ac246fda18
commit c5d2b6e03b

View File

@ -11,6 +11,13 @@ class ConflictResolution(enum.Enum):
Exception = 2
class Language(enum.Enum):
En = 1
Pt = 2
Fr = 4
Es = 8
De = 32
Ru = 64
class PenguinStringCompiler(OrderedDict):
def __init__(self, *args, **kwargs):