2026-rff_mp/petryaninyas/task2/core/player.py
2026-05-24 19:43:30 +03:00

7 lines
152 B
Python

class Player:
def __init__(self, currentCell):
self.currentCell = currentCell
def setCell(self, cell):
self.currentCell = cell