Inteligentna_smieciarka/state.py

6 lines
187 B
Python
Raw Normal View History

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