hnc-daniil/HNC/Ladders/Game/Player.py

7 lines
149 B
Python

class Player:
def __init__(self, color):
self.color = color
self.position = -1
self.skip = False
self.dices = []