This commit is contained in:
2021-12-22 11:36:51 +01:00
parent 63bd4c6158
commit 1d67c13e09
4 changed files with 39 additions and 11 deletions

25
.vscode/launch.json vendored
View File

@@ -1,14 +1,19 @@
{
// 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": "lua",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/main.lua"
}
{
"name": "Debug Love",
"type": "lua-local",
"request": "launch",
"program": {
"command": "love"
},
"args": [
"."
],
"scriptRoots": [
"game"
]
}
]
}
}