11 lines
249 B
Python
11 lines
249 B
Python
|
from domain.entities.entity import Entity
|
||
|
from domain.world import World
|
||
|
|
||
|
|
||
|
class Plant(Entity):
|
||
|
def __init__(self, x: int, y: int):
|
||
|
super().__init__(x, y, "PLANT")
|
||
|
self.watered = 100
|
||
|
|
||
|
# TODO PLANT: add more properties to
|