feat: Added nav and start of npc stuff

This commit is contained in:
2025-10-04 21:08:52 +01:00
parent 7a27309c5b
commit d0d79d0551
7 changed files with 214 additions and 0 deletions

24
code/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug 'main.c' Project",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/../build/ldebug",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build"
}
]
}

20
code/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "/home/matt/Repos/ld58/linux",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "never"
},
"problemMatcher": [
"$gcc"
]
}
]
}