1
0
forked from UNN/2026-rff_mp
2026-rff_mp/BolonkinNM/core/player.py
2026-05-24 19:39:37 +03:00

7 lines
152 B
Python

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