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
+18
View File
@@ -0,0 +1,18 @@
#include "HydraSystem.h"
void HydraSystem::Update(float delta_t_seconds)
{
UpdateSystem(delta_t_seconds);
}
void HydraSystem::InitialiseComponents()
{
for(auto it = EntitiesToCreate.begin(); it != EntitiesToCreate.end(); ++it)
{
HydraID actor_id = *it;
InitialiseComponent(actor_id);
}
EntitiesToCreate.clear();
}