Files
PyGame-Pacman/actors/enums.py
2025-04-14 07:52:58 +02:00

17 lines
307 B
Python

from enum import Enum
class PlayerDirection(Enum):
DirectionRight = 1
DirectionLeft = 2
DirectionUp = 3
DirectionDown = 4
class GhostDirection(Enum):
GhostRight = 1
GhostLeft = 2
GhostUp = 3
GhostDown = 4
class PillType(Enum):
PillTypeRegular = 1
PillTypePower = 2