コード例 #1
0
def createPlayer(chips):
    player = PlayerProxy('name', chips)
    player.parse = lambda x: x
    player.fromMe = lambda x: True
    return player
コード例 #2
0
ファイル: TestThePlayer.py プロジェクト: JohnBrod/PokerBots
def createPlayer(chips):
    player = PlayerProxy('name', chips)
    player.parse = lambda x: x
    player.fromMe = lambda x: True
    return player