Stepwise/source/entity.py

13 lines
254 B
Python

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