We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0bc163 + c61c5be commit 802d9faCopy full SHA for 802d9fa
1 file changed
games/2048-Game/2048-Game.py
@@ -67,6 +67,14 @@ def __init__(self, root):
67
)
68
self.restart_button.grid(pady=5)
69
70
+ self.instruction_label = tk.Label(
71
+ root,
72
+ text="🎮 Controls: ← ↑ → ↓ | Merge same numbers | Goal: 2048 🎯",
73
+ font=("Arial", 10),
74
+ fg="#6a635b",
75
+ )
76
+ self.instruction_label.grid(pady=5)
77
+
78
self.cells = []
79
self.board = [[0] * GRID_SIZE for _ in range(GRID_SIZE)]
80
0 commit comments