hnc-vitalii/HNC/Ladders/Player.py

8 lines
150 B
Python
Raw Permalink Normal View History

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