ChatDev/WareHouse/rock_paper_scissors_tangxixi_ModelBest1024_20231026190617/main.py
2023-10-26 20:20:33 +08:00

9 lines
181 B
Python

'''
The main file to run the rock, paper, scissors game.
'''
from game import Game
from gui import GUI
if __name__ == "__main__":
game = Game()
gui = GUI(game)
gui.run()