2026-rff_mp/BrychkinKA/src/ui/player.py

8 lines
196 B
Python
Raw Normal View History

2026-05-25 12:23:54 +00:00
from src.model.cell import Cell
class Player:
def __init__(self, start_cell: Cell):
self.current_cell = start_cell
def move_to(self, cell: Cell):
self.current_cell = cell