Skip to content

Commit

Permalink
Add optional test parameter to debug configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpalms committed Mar 12, 2024
1 parent 7b4e303 commit 3120604
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"program": "${workspaceFolder}/basic/${input:basic_agent}",
"args": [
"--gameId", "${input:gameId}",
"--test", "${input:test}",
],
"console": "integratedTerminal",
"env": {
Expand Down Expand Up @@ -106,6 +107,17 @@
"kof98umh",
],
},
{
"id": "test",
"type": "pickString",
"description": "Test:",
"default": "0",
"options": [
{ "label": "True", "value": "1" },
{ "label": "False", "value": "0" },

],
},
{
"id": "basic_agent",
"type": "pickString",
Expand Down

0 comments on commit 3120604

Please sign in to comment.