First commit of the basic game ready to work on.

This commit is contained in:
Zed A. Shaw 2025-05-16 11:06:16 -04:00
parent 801a05d1ab
commit a68cce5cbb
41 changed files with 1815 additions and 0 deletions

28
assets/config.json Normal file
View file

@ -0,0 +1,28 @@
{
"sounds": {
"ui_click": "assets/sounds/ui_click.ogg",
"ui_hover": "assets/sounds/ui_hover.ogg",
"clicker_bark": "assets/sounds/clicker_bark.ogg",
"blank": "assets/sounds/blank.ogg"
},
"sprites": {
"textures_test":
{"path": "assets/textures_test.png",
"frame_width": 53,
"frame_height": 34
},
"clicker_the_dog":
{"path": "assets/clicker_the_dog-1024.png",
"frame_width": 1024,
"frame_height": 1024
},
"clicker_treat_bone":
{"path": "assets/clicker_treat_bone.png",
"frame_width": 256,
"frame_height": 144
}
},
"graphics": {
"smooth_textures": false
}
}