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