Machine_learning_2023/domain/entities/garbage.py

12 lines
301 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.properties = [2, 2, 0, 0, 1, 4, 24, 1]
# TODO GARBAGE: add more properties