Inteligentna_smieciarka/state.py

7 lines
224 B
Python
Raw Normal View History

2023-04-19 21:40:40 +02:00
class State:
2023-04-19 22:12:02 +02:00
def __init__(self, parent, action, xpos, ypos, orientation):
2023-04-19 21:40:40 +02:00
self.parent = parent
self.xpos = xpos
self.ypos = ypos
2023-04-19 22:12:02 +02:00
self.orientation = orientation
self.action = action