initial commit

This commit is contained in:
Confideo-IOM
2026-07-17 15:30:29 +01:00
commit 7e8ec5a825
416 changed files with 40308 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "HydraECS.h"
void HydraECS::Init()
{
m_component_manager = std::make_unique<HydraComponentManager>();
m_entity_manager = std::make_unique<HydraEntityManager>();
m_system_manager = std::make_unique<HydraSystemManager>();
}
void HydraECS::Shutdown()
{
m_system_manager->Shutdown();
m_component_manager.release();
m_entity_manager.release();
m_system_manager.release();
}