Implement Set, Refactor Map into Tree

This commit is contained in:
Dynamitos
2023-12-22 19:46:07 +01:00
parent ac1d11402e
commit c8f99bb64d
20 changed files with 674 additions and 603 deletions
+3
View File
@@ -0,0 +1,3 @@
target_sources(SeeleUnitTests
PRIVATE
ComponentSystem.cpp)
+9
View File
@@ -0,0 +1,9 @@
#include "EngineTest.h"
#include "Component/Component.h"
#include "Component/Transform.h"
#include "Component/Camera.h"
#include "Component/DirectionalLight.h"
#include "System/ComponentSystem.h"
using namespace Seele;
using namespace Seele::System;