7 lines
96 B
Python
7 lines
96 B
Python
from enum import auto, Enum
|
|
|
|
|
|
class EquipmentType(Enum):
|
|
WEAPON = auto()
|
|
ARMOR = auto()
|