2026-rff_mp/petryainiyas/task2/core/player.py
2026-05-30 22:27:37 +03:00

7 lines
152 B
Python

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