SZI_PROJEKT_GR1_TRAKTOR/Plant.py
marcinljablonski f868b53e7e first commit
2019-05-06 12:51:41 +02:00

12 lines
351 B
Python

class Plant():
def get_symbol(self):
raise NotImplementedError("Please Implement this method")
def tick(self, n):
raise NotImplementedError("Please Implement this method")
def get_stats(self):
#np. touple'a z info czy żyje, ile ma wody i nawozu
raise NotImplementedError("Please Implement this method")