mirror of
https://github.com/kingomarnajjar/ChatDev.git
synced 2026-07-25 22:27:29 +10:00
12 lines
No EOL
248 B
Python
12 lines
No EOL
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() |