Inteligentna_smieciarka/state.py
Maksymilian Mikołajczak bdb0ed2d3c basic bfs implementation
2023-04-19 22:12:02 +02:00

7 lines
224 B
Python

class State:
def __init__(self, parent, action, xpos, ypos, orientation):
self.parent = parent
self.xpos = xpos
self.ypos = ypos
self.orientation = orientation
self.action = action