AI_PROJECT/Node.py

9 lines
165 B
Python
Raw Permalink Normal View History

2024-04-12 22:11:30 +02:00
class Node:
state = None #[{stan}]
parent = None #[Node]
action = None #[Forward/Right/Left]
def __init__(self, state):
self.state = state