Upload Files

This commit is contained in:
phikill 2025-06-24 19:21:07 -03:00
parent d440e3e71c
commit a95b98a606
1054 changed files with 265055 additions and 0 deletions

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Executar no Windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.exe",
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"preLaunchTask": "build"
},
{
"name": "Executar no Linux/macOS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"stopAtEntry": false,
"console": "externalTerminal",
"preLaunchTask": "build"
}
]
}