forked from UNN/2026-rff_mp
7 lines
152 B
Python
7 lines
152 B
Python
|
|
class Player:
|
||
|
|
def __init__(self, currentCell):
|
||
|
|
self.currentCell = currentCell
|
||
|
|
|
||
|
|
def setCell(self, cell):
|
||
|
|
self.currentCell = cell
|