forked from s452751/AI_PRO
14 lines
317 B
Python
14 lines
317 B
Python
|
class Field:
|
||
|
def __init__(self, __horizontal, __vertical, __state):
|
||
|
self.horizontal = __horizontal
|
||
|
self.vertical = __vertical
|
||
|
self.__state = __state
|
||
|
|
||
|
@property
|
||
|
def state(self):
|
||
|
return self.__state
|
||
|
|
||
|
@state.setter
|
||
|
def state(self, state):
|
||
|
self.__state = state
|