Files
DicePlayer/diceplayer/player.py

9 lines
202 B
Python

from diceplayer.config.player_config import PlayerConfig
class Player:
def __init__(self, config: PlayerConfig):
self.config = config
def play(self, continuation = False):
...