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