refactor everything

This commit is contained in:
Crylia
2024-07-27 05:16:25 +02:00
parent 7ff0f8b71a
commit 7d19d72bf1
54 changed files with 1259 additions and 680 deletions

22
.vscode/c_cpp_properties.json vendored Normal file → Executable file
View File

@@ -1,14 +1,24 @@
{
"configurations": [
{
"name": "Linux",
"name": "linux-gcc-x64",
"includePath": [
"${default}"
"${workspaceFolder}/**",
"${default}",
"/usr/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"intelliSenseMode": "linux-clang-x64"
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++17",
"intelliSenseMode": "linux-gcc-x64",
"compilerArgs": [
""
],
"configurationProvider": "ms-vscode.cmake-tools",
"browse": {
"limitSymbolsToIncludedHeaders": true
}
}
],
"version": 4
}
}