mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-12-27 22:01:37 +03:00
9 lines
181 B
Python
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() |