From c85d2f3d885b07465b2c92b9add3db4b60757e7a Mon Sep 17 00:00:00 2001 From: Gordon Pedersen Date: Tue, 18 Apr 2023 15:50:20 +1000 Subject: [PATCH] added a run command for vscode --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ab4414e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // 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": "Run Game", + "type": "node-terminal", + "request": "launch", + "command": "${workspaceRoot}/../dragonruby.exe ${workspaceRoot}", + } + ] +} \ No newline at end of file