class Entity:
    def __init__(self, x: int, y: int, type: str):
        self.x = x
        self.y = y
        self.type = type