Mostly working prototype that uses FTXUI to render to SFML and then plays a sound when you hit a wall.

This commit is contained in:
Zed A. Shaw 2024-10-02 16:56:06 -04:00
parent 69fa7d9e4e
commit feda66defd
11 changed files with 213 additions and 68 deletions

17
.tarpit.json Normal file
View file

@ -0,0 +1,17 @@
{
"audio": {
"you_died": "./assets/you_died.mp3",
"build_success": "",
"build_failed": "./assets/build_failed.mp3",
"building": "./mysounds/building.mp3"
},
"images": {
"build_success": "./assets/build_success.png",
"you_died": "./assets/you_died.png",
"build_failed": "./assets/build_failed.png",
"building": "./assets/building.png"
},
"git_path": ".\\",
"build_cmd": "meson compile -C builddir",
"test_cmd": "./builddir/runtests.exe"
}