hnc-eduard/Player.py

8 lines
157 B
Python
Raw Normal View History

2023-06-24 19:33:09 +02:00
class Player:
def __init__(self, color):
self.color = color
self.position = -1
self.skip = False
self.dices = []