9 lines
193 B
Python
9 lines
193 B
Python
from diceplayer.config.player_config import PlayerConfig
|
|
|
|
|
|
class Player:
|
|
def __init__(self, config: PlayerConfig):
|
|
self.config = config
|
|
|
|
def play(self, continuation=False): ...
|