reorganized libs

This commit is contained in:
Yannik
2023-05-04 16:11:11 +02:00
parent bec727743e
commit 55c94ee23d
20 changed files with 113 additions and 38 deletions

21
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${default}"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}

12
.vscode/settings.json vendored
View File

@@ -1,10 +1,14 @@
{
"C_Cpp.default.includePath": [
"lib/godot-cpp/include",
"lib/godot-cpp/gen/include",
"lib/godot-cpp/gdextension"
"src/lib/godot-cpp/include",
"src/lib/godot-cpp/gen/include",
"src/lib/godot-cpp/gdextension"
],
"files.associations": {
"xlocbuf": "cpp"
}
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
}