AI_PRO/Field.py

5 lines
162 B
Python
Raw Normal View History

2021-03-28 22:42:36 +02:00
class Field:
def __init__(self, horizontal, vertical, state):
self.horizontal = horizontal
self.vertical = vertical
self.state = state