18 : m_registry{registry}
23 template<std::derived_from<Module> T>
26 return m_registry->
Get<T>();
30 template<std::derived_from<Module> T>
33 return m_registry->
Get(
id);
37 template<std::invocable<Module*> F>
40 for (
auto& module : m_registry->GetAllModules())
42 std::invoke(func, module.get());
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Provides access to registered Modules.
Definition: ModuleProvider.h:15
auto Get() -> T *
Get a pointer to a Module that was registered with the given type.
Definition: ModuleProvider.h:24
auto Get(size_t id) -> Module *
Get a pointer to the Module that was registered with the given id.
Definition: ModuleProvider.h:31
void ForEachModule(F func)
Apply a function to all registered Modules.
Definition: ModuleProvider.h:38
Definition: ModuleRegistry.h:19
auto Get() const noexcept -> T *
Get a pointer to a module or nullptr if it is unregistered.
Definition: ModuleRegistry.h:64