Rework dict with color data to use color enum

This commit is contained in:
DarkPhoenix
2019-08-06 12:44:59 +03:00
parent 16f4903eba
commit 70d1a3534b
2 changed files with 25 additions and 9 deletions

View File

@@ -138,3 +138,14 @@ class TargetResistMode(IntEnum):
armor = autoId()
hull = autoId()
weightedAverage = autoId()
@unique
class Color(IntEnum):
red = autoId()
green = autoId()
blue = autoId()
yellow = autoId()
cyan = autoId()
magenta = autoId()
orange = autoId()
purple = autoId()