Add enum for colors
This commit is contained in:
parent
021c98a71c
commit
f813e9f136
|
@ -16,3 +16,10 @@ class Format(Enum):
|
||||||
PENNY_DREADFUL = "penny_dreadful"
|
PENNY_DREADFUL = "penny_dreadful"
|
||||||
COMMANDER_1V1 = "commander_1v1"
|
COMMANDER_1V1 = "commander_1v1"
|
||||||
COMMANDER = "commander"
|
COMMANDER = "commander"
|
||||||
|
|
||||||
|
class Color(Enum):
|
||||||
|
WHITE = 0
|
||||||
|
BLUE = 1
|
||||||
|
BLACK = 2
|
||||||
|
RED = 3
|
||||||
|
GREEN = 4
|
||||||
|
|
Loading…
Reference in New Issue