SpiecsEngine
 
Loading...
Searching...
No Matches

◆ Run()

void Spices::SystemManager::Run ( TimeStep & ts)
static

Update all system that pushed to this manager.

Parameters
[in]tsTimeStep.

Definition at line 47 of file SystemManager.cpp.

48 {
50
51 m_Identities.for_each([&](auto& k, auto& v) {
52 v->OnSystemUpdate(ts);
53 return false;
54 });
55 }
#define SPICES_PROFILE_ZONE
static scl::linked_unordered_map< std::string, std::shared_ptr< System > > m_Identities
Static System Map.

Referenced by Spices::EditorWorld::OnActivate().