Stepwise/source/actions.py
2025-03-13 19:50:34 +11:00

14 lines
215 B
Python

class Action: #lawsuit?
pass
class EscapeAction(Action):
pass
class MovementAction(Action):
def __init__(self, dx: int, dy: int):
super().__init__()
self.dx = dx
self.dy = dy