Machine_learning_2023/domain/entities/garbage.py

12 lines
289 B
Python
Raw Permalink Normal View History

2023-05-18 23:18:07 +02:00
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
2023-05-19 15:49:17 +02:00
self.props = [2,2,0,0,1,4,24,1]
2023-05-18 23:18:07 +02:00
# TODO GARBAGE: add more properties