From 5a60777a735509184d222e9fef3dae98ec559e36 Mon Sep 17 00:00:00 2001 From: Brosef Date: Sun, 22 Jun 2025 18:15:25 +0100 Subject: [PATCH] Added example launch.json --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4a6bcc7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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": "Python Debugger", + "type": "debugpy", + "request": "launch", + "python": "../PainJamLauncher/.venv/Scripts/python.exe", + "program": "../PainJamLauncher/__main__.py", + "args": ["CHANGE ME TO YOUR GAME ID"], + "console": "integratedTerminal" + } + ] +} \ No newline at end of file