1
0
forked from UNN/2026-rff_mp
2026-rff_mp/vinichukan/src/ui/player.py

10 lines
198 B
Python
Raw Normal View History

2026-05-24 08:40:51 +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