forked from s452751/AI_PRO
5 lines
162 B
Python
5 lines
162 B
Python
|
class Field:
|
||
|
def __init__(self, horizontal, vertical, state):
|
||
|
self.horizontal = horizontal
|
||
|
self.vertical = vertical
|
||
|
self.state = state
|