hnc-eduard/Player.py

8 lines
157 B
Python
Executable File

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