12 lines
278 B
Python
12 lines
278 B
Python
from domain.entities.entity import Entity
|
|
|
|
|
|
class Garbage(Entity):
|
|
def __init__(self, x: int, y: int):
|
|
super().__init__(x, y, "PEEL")
|
|
self.wet = False
|
|
self.size = 0
|
|
self.props = [1,2,0,16,1,10,25]
|
|
|
|
# TODO GARBAGE: add more properties
|