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):
|
class PlayerDirection(Enum):
|
||||||
DirectionRight = 0
|
DirectionRight = 0
|
||||||
@@ -22,3 +22,14 @@ class Colors(Enum):
|
|||||||
Blue = (0, 0, 255)
|
Blue = (0, 0, 255)
|
||||||
Cyan = (0, 255, 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