Initial commit

This commit is contained in:
2026-01-19 12:12:59 +00:00
commit 0f33a92fa7
13 changed files with 582 additions and 0 deletions

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

@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/DemoProject/include",
"${workspaceFolder}/DemoProject/src",
"${workspaceFolder}/TSE/TSE_Base/include",
"${workspaceFolder}/TSE/TSE_Base/src",
"${workspaceFolder}/TSE/TSE_Core/include",
"${workspaceFolder}/TSE/TSE_Core/src",
"${workspaceFolder}/TSE/TSE_Math/src",
"${workspaceFolder}/TSE/TSE_GlfwImpl/include",
"${workspaceFolder}/TSE/TSE_GlfwImpl/src",
"${workspaceFolder}/TSE/TSE_GlfwOpenGlImpl/include",
"${workspaceFolder}/TSE/TSE_GlfwOpenGlImpl/src",
"${workspaceFolder}/TSE/TSE_Editor/src"
],
"defines": [],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}