mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
11 lines
221 B
Python
11 lines
221 B
Python
'''
|
|
Main file for the Texas Hold'em Poker game.
|
|
'''
|
|
from game import Game
|
|
from player import HumanPlayer, AIPlayer
|
|
from deck import Deck
|
|
def main():
|
|
game = Game()
|
|
game.start()
|
|
if __name__ == "__main__":
|
|
main() |