ChatDev/WareHouse/Gomoku_THUNLP_20230625201030/main.py
2023-09-04 19:24:28 +08:00

14 lines
306 B
Python

'''
This is the main file for the gomoku game.
'''
from game import Game
from gui import GUI
def main():
# Create a new game instance
game = Game()
# Create a GUI instance and pass the game object
gui = GUI(game)
# Start the game loop
gui.run()
if __name__ == "__main__":
main()