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

Commit 2527ffe

Browse files
committed
resolved conflicting files
1 parent 99d775f commit 2527ffe

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

projects/Tile Matching/tile_matching.py

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

0 commit comments

Comments
 (0)