Files
gobbo/.vscode/launch.json
2026-04-10 17:53:31 -05:00

17 lines
478 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Play in Redot",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "/Applications/Redot-4.4.app/Contents/MacOS/Redot",
"args": ["--path", "${workspaceFolder}/gobbos_delivery"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}