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

7 lines
149 B
Python
Raw Normal View History

2023-07-19 16:23:15 +02:00
class Player:
def __init__(self, color):
self.color = color
self.position = -1
self.skip = False
self.dices = []