from typing import Tuple class Entity: def __init__(self, x: int, y: int, char: str, color: Tuple[int, int, int]): self.x = x self.y = y self.char = char self.color = color def set_pos(self, x: int, y: int) -> None: self.x = x self.y = y