First version on Github

This commit is contained in:
csd4ni3l
2025-09-19 22:03:33 +02:00
commit 5f22c2ed9c
26 changed files with 12780 additions and 0 deletions

7
utils/preload.py Normal file
View File

@@ -0,0 +1,7 @@
import arcade.gui, arcade
button_texture = arcade.gui.NinePatchTexture(64 // 4, 64 // 4, 64 // 4, 64 // 4, arcade.load_texture("assets/graphics/button.png"))
button_hovered_texture = arcade.gui.NinePatchTexture(64 // 4, 64 // 4, 64 // 4, 64 // 4, arcade.load_texture("assets/graphics/button_hovered.png"))
with open("assets/mit_wordlist.txt", "r") as file:
words = [word.strip() for word in file.readlines()]