2026-rff_mp/BrychkinKA/src/ui/player.py
2026-05-25 15:23:54 +03:00

8 lines
196 B
Python

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