mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
12 lines
248 B
Python
12 lines
248 B
Python
'''
|
|
This is the main file for the card matching memory game.
|
|
'''
|
|
import tkinter as tk
|
|
from game import Game
|
|
def main():
|
|
root = tk.Tk()
|
|
root.title("Memory Game")
|
|
game = Game(root)
|
|
root.mainloop()
|
|
if __name__ == "__main__":
|
|
main() |