Added a sample sound and some config, added tween to the src

This commit is contained in:
Stefan Stefanov 2024-12-31 13:06:30 +02:00
parent 01dec4e5c1
commit d6143951d8
12 changed files with 960 additions and 44 deletions

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "cppvsdbg",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/game.exe",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

19
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make",
// "problemMatcher": [
// "$msvc"
// ],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}