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

5 lines
107 B
Python

from .enums import PillType
class Pill:
def __init__(self, typ: PillType):
self.pilltype = typ