traktor/Plant.py
marcinljablonski b7198cb910 .
2019-04-29 03:49:45 +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")