2026-rff_mp/BolonkinNM/core/player.py

7 lines
152 B
Python
Raw Normal View History

2026-05-24 16:39:37 +00:00
class Player:
def __init__(self, currentCell):
self.currentCell = currentCell
def setCell(self, cell):
self.currentCell = cell