12 lines
351 B
Python
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")
|