2026-rff_mp/vinichukan/src/ui/player.py
2026-05-24 11:40:51 +03:00

10 lines
198 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