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 |