mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
14 lines
306 B
Python
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() |