Browse Source

launches

master
realweezerfan93 12 months ago
parent
commit
385f0d2d89
  1. 30
      .vscode/launch.json

30
.vscode/launch.json

@ -0,0 +1,30 @@
{
// 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": [
{
"name": "Starbound Win64",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/dist/starbound.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "externalTerminal"
},
{
"name": "Starbound Server Win64",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/dist/starbound.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "externalTerminal"
}
]
}
Loading…
Cancel
Save