2026-rff_mp/petryainiyas/task2/core/player.py

7 lines
152 B
Python
Raw Normal View History

2026-05-30 19:27:37 +00:00
class Player:
def __init__(self, currentCell):
self.currentCell = currentCell
def setCell(self, cell):
self.currentCell = cell