Initial Commit

This commit is contained in:
Patrick Schwarzer 2025-04-11 18:13:24 +02:00
commit 41f6c65a46
7 changed files with 141 additions and 0 deletions

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

@ -0,0 +1,15 @@
{
// 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-11.5-x86_64.AppImage . && exit"
}
]
}