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

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()