Add demo GIF, Hot Air Baloon, add a way to customize notification timeout, rows and columns, make main menu buttons smaller, fix tetris not updating info label after restart

This commit is contained in:
csd4ni3l
2025-09-21 21:02:48 +02:00
parent 183eca33c5
commit 944b5ab212
13 changed files with 240 additions and 79 deletions

View File

@@ -2,7 +2,6 @@ import arcade, arcade.gui, time, random, os, json
from plyer import notification
from utils.constants import ROWS, COLS
from utils.preload import words
class Game(arcade.gui.UIView):
@@ -17,6 +16,9 @@ class Game(arcade.gui.UIView):
self.running = True
with open("settings.json", "r") as file:
self.settings = json.load(file)
if not os.path.exists("data.json"):
self.data = {}
else: