bunch of stuff

This commit is contained in:
Patrick Schwarzer 2025-04-12 10:04:38 +02:00
parent 77c93bf874
commit d220cfb9da
5 changed files with 93 additions and 42 deletions

35
.vscode/launch.json vendored
View file

@ -1,15 +1,28 @@
{
// 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": [
{
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/main.lua",
"type": "node-terminal",
"command": "./love.AppImage . && exit"
}
{
"type": "lua-local",
"request": "launch",
"name": "Debug",
"program": {
"command": "love"
},
"args": [
".",
"debug"
],
},
{
"type": "lua-local",
"request": "launch",
"name": "Release",
"program": {
"command": "love"
},
"args": [
".",
],
},
]
}
}