diff --git a/actors/enums.py b/actors/enums.py index 4b86c41..b04cf9d 100644 --- a/actors/enums.py +++ b/actors/enums.py @@ -1,5 +1,9 @@ from enum import Enum, auto +class PillType(Enum): + NORMAL = 1 + POWER = 2 + class PlayerDirection(Enum): DirectionRight = 0 DirectionLeft = 180