created a basic demonstraction of how text rendering should work, added some positive comments to the json opening code

This commit is contained in:
2025-06-24 17:15:45 +01:00
parent 1a34d7ca4a
commit b61a7114ba
2 changed files with 31 additions and 3 deletions

17
launch.json Normal file
View File

@ -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": ["captchaGame"],
"console": "integratedTerminal"
}
]
}