Partial Physics

This commit is contained in:
Isuru Samarathunga
2025-09-09 12:42:15 +05:30
parent 0440bc6f13
commit 2856bfac6c
21 changed files with 242 additions and 102 deletions

11
.vscode/launch.json vendored
View File

@ -5,16 +5,17 @@
"version": "0.2.0",
"configurations": [
{
"name": "C/C++: debiug",
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/IAESandbox.exe",
"program": "${workspaceFolder}/build/bin/Debug/IAESandbox.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/Src/IAESandbox",
"cwd": "${workspaceFolder}/Src/IAESandbox/Res",
"environment": [],
"preLaunchTask": "build",
"console": "integratedTerminal"
"console": "externalTerminal",
"preLaunchTask": "CMake: build"
}
]
}