traktor/Plant.py

12 lines
351 B
Python
Raw Permalink Normal View History

2019-04-29 03:49:45 +02:00
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")