예제 #1
0
    def __init__(self, params):
        '''
        Initialisation d'une partie
        Création des player
        '''
        self.useGoto = False
        self.config = Config.loadConfig()
        self.cards = []
        self.setupCard()

        self.players = [Player(params.get("playerName1")), Player(params.get("playerName2"))]
        
        self.setupPlayer(self.players[0])
        self.setupPlayer(self.players[1])
        self.setupDeck()