Basic start

This commit is contained in:
SweetSea
2024-11-24 12:21:07 +07:00
parent b23869725a
commit 45b9af49a3
10 changed files with 1050 additions and 10 deletions

19
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Cambridge",
"type": "lua-local",
"request": "launch",
"program": {
"command": "lovec"
},
"args": [
"."
],
"scriptRoots": [
"."
]
}
]
}