15 lines
345 B
Python
15 lines
345 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, dx: int, dy: int) -> None:
|
|
# Move the entity by a given amount
|
|
self.x = dx
|
|
self.y = dy
|