BAPSicle/.vscode/launch.json
2020-10-29 21:23:37 +00:00

19 lines
No EOL
511 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Launch Player Standalone",
"type": "python",
"request": "launch",
"program": "./player.py",
"console": "integratedTerminal"
},
{
"name": "Python: Launch Server Standalone",
"type": "python",
"request": "launch",
"program": "./launch_standalone.py",
"console": "integratedTerminal"
}
]
}