Reworked the gui to use GUECS now so lots of code soon to die.

This commit is contained in:
Zed A. Shaw 2025-04-22 03:08:43 -04:00
parent e78340a0cd
commit 70c2ce7d51
9 changed files with 97 additions and 38 deletions

29
assets/config.json Normal file
View file

@ -0,0 +1,29 @@
{
"sounds": {
"you_died": "./assets/you_died.mp3",
"build_success": "./assets/build_success.mp3",
"build_failed": "./assets/build_failed.mp3",
"building": "./mysounds/building.mp3"
},
"sprites": {
"build_success": {
"path": "./assets/build_success.png",
"frame_width": 240,
"frame_height": 240},
"you_died": {
"path": "./assets/you_died.png",
"frame_width": 240,
"frame_height": 240},
"build_failed": {
"path": "./assets/build_failed.png",
"frame_width": 240,
"frame_height": 240},
"building": {
"path": "./assets/building.png",
"frame_width": 240,
"frame_height": 240}
},
"graphics": {
"smooth_textures": false
}
}