From 058316febd0e6cd1bd5f4d8b71033867826fe890 Mon Sep 17 00:00:00 2001 From: Lerking Date: Tue, 15 Apr 2025 21:30:24 +0200 Subject: [PATCH] Update actors/enums.py --- actors/enums.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/actors/enums.py b/actors/enums.py index 45f4e39..80d5945 100644 --- a/actors/enums.py +++ b/actors/enums.py @@ -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) \ No newline at end of file + 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() \ No newline at end of file