CheatMenuSA/.vscode/launch.json

47 lines
1.4 KiB
JSON
Raw Normal View History

{
// 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": "Launch SA",
"type": "cppvsdbg",
"request": "launch",
2022-06-15 06:45:43 -04:00
"program": "E:/GTASanAndreas/gta_sa.exe",
"args": [],
"stopAtEntry": false,
2022-06-15 06:45:43 -04:00
"cwd": "E:/GTASanAndreas/",
"environment": [],
"console": "internalConsole"
},
2021-08-01 21:41:48 -04:00
{
"name": "Launch VC",
"type": "cppvsdbg",
"request": "launch",
2021-10-17 13:47:01 -04:00
"program": "E:/GTA Vice City/gta-vc.exe",
2021-08-01 21:41:48 -04:00
"args": [],
"stopAtEntry": false,
2021-10-17 13:47:01 -04:00
"cwd": "F:/GTASanAndreas/",
2021-08-01 21:41:48 -04:00
"environment": [],
"console": "internalConsole"
},
2021-10-21 18:23:02 -04:00
{
"name": "Launch III",
"type": "cppvsdbg",
"request": "launch",
"program": "E:/GTA3/Gta3.exe",
"args": [],
"stopAtEntry": false,
"cwd": "F:/GTASanAndreas/",
"environment": [],
"console": "internalConsole"
},
{
"name": "Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}