SprytnyTraktor/plant.py

7 lines
180 B
Python
Raw Normal View History

2021-03-21 12:40:13 +01:00
class Plant:
def __init__(self, state):
self.state = state
def get_state(self):
return self.state
def set_state(self, state):
self.state = state