Machine_learning_2023/domain/vacuum.py
2023-03-28 20:14:23 +02:00

9 lines
200 B
Python

from domain.entity import Entity
class Vacuum(Entity):
def __init__(self, x: int, y: int):
super().__init__(x, y, 'VACUUM')
self.battery = 100
# TODO add more properties