This commit is contained in:
Stefan Stefanov 2024-04-19 20:41:22 +03:00
parent 10f2cebd46
commit 15e5ad3454
22 changed files with 965 additions and 1 deletions

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

@ -0,0 +1,31 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "Build Debug",
"name": "Debug",
"program": "${workspaceFolder}/game_debug.exe",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "Build Release",
"name": "Release",
"program": "${workspaceFolder}/game_release.exe",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "cppvsdbg",
"request": "launch",
"name": "Run File",
"program": "odin",
"args": ["run", "${fileBasename}", "-file"],
"cwd": "${workspaceFolder}"
}
]
}