si23traktor/core/plants/plant.py
2023-06-19 14:21:30 +02:00

11 lines
356 B
Python

class Plant:
def __init__(self, id, name, state, image_zero, image_one, image_path, x, y, empty):
self.id = id
self.name = name
self.state = state
self.image_state_zero = image_zero
self.image_state_one = image_one
self.image_path = image_path
self.xy = [x, y]
self.empty = empty