Update actors/enums.py
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from enum import Enum
|
||||
from enum import Enum, auto
|
||||
|
||||
class PlayerDirection(Enum):
|
||||
DirectionRight = 0
|
||||
@@ -21,4 +21,15 @@ class Colors(Enum):
|
||||
Black = (0, 0, 0)
|
||||
Blue = (0, 0, 255)
|
||||
Cyan = (0, 255, 255)
|
||||
Magenta = (255, 0, 255)
|
||||
Magenta = (255, 0, 255)
|
||||
|
||||
class GhostColor(Enum):
|
||||
BLINKY = (255, 0, 0)
|
||||
PINKY = (255, 184, 255)
|
||||
INKY = (0, 255, 255)
|
||||
CLYDE = (255, 184, 82)
|
||||
|
||||
class GhostMode(Enum):
|
||||
SCATTER = auto()
|
||||
CHASE = auto()
|
||||
FRIGHTENED = auto()
|
Reference in New Issue
Block a user