12 lines
272 B
Python
12 lines
272 B
Python
from domain.entities.entity import Entity
|
|
from domain.world import World
|
|
|
|
|
|
class Garbage(Entity):
|
|
def __init__(self, x: int, y: int):
|
|
super().__init__(x, y, "GARBAGE")
|
|
self.wet = False
|
|
self.size = 0
|
|
|
|
# TODO GARBAGE: add more properties
|