Machine_learning_2023/domain/entities/vacuum.py
Mateusz Dokowicz f7b97c5f74 auto formatting
2023-03-30 18:27:51 +02:00

10 lines
240 B
Python

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