Enums refactor
This commit is contained in:
parent
d6cf76f6bc
commit
28d9013983
22
src/entities/Enums.py
Normal file
22
src/entities/Enums.py
Normal file
@ -0,0 +1,22 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class Rotations(Enum):
|
||||
NORTH = 0
|
||||
EAST = 1
|
||||
SOUTH = 2
|
||||
WEST = 3
|
||||
|
||||
|
||||
class StatisticNames(Enum):
|
||||
HP = 0
|
||||
STAMINA = 1
|
||||
HUNGER = 2
|
||||
THIRST = 3
|
||||
|
||||
|
||||
class Movement(Enum):
|
||||
ROTATE_R = 0
|
||||
ROTATE_L = 1
|
||||
FORWARD = 2
|
||||
PICKUP = 3
|
Loading…
Reference in New Issue
Block a user