Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 022ea52

Browse files
committed
.
1 parent 2527ffe commit 022ea52

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

projects/Tile Matching/tile_matching.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,16 @@ def get_tile_position(self, tile):
106106
def main():
107107
root = tk.Tk()
108108
root.title("Tile Matching Game")
109+
109110
rows, columns = 4, 4
111+
110112
game = TileMatchingGame(root, rows, columns)
113+
111114
# Exit Button
112115
exit_button = tk.Button(root, text="Exit", command=root.destroy)
113116
exit_button.grid(row=rows + 3, columnspan=columns)
117+
114118
root.mainloop()
119+
115120
if __name__ == "__main__":
116121
main()

0 commit comments

Comments
 (0)