ChatDev/WareHouse/Poker1_DefaultOrganization_20231006035628/main.py

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()