Make Application template and responsible for modules init

This commit is contained in:
Lynix
2023-01-06 20:57:45 +01:00
committed by Jérôme Leclercq
parent 04bfa97579
commit 8db1c04568
6 changed files with 130 additions and 50 deletions

View File

@@ -7,35 +7,6 @@
namespace Nz
{
template<typename T, typename ...Args>
T& Nz::Application::AddComponent(Args&& ...args)
{
std::unique_ptr<T> component = std::make_unique<T>(std::forward<Args>(args)...);
T& componentRef = *component;
AddComponent(std::move(component));
return componentRef;
}
inline Application::Application() :
Application(0, static_cast<const char**>(nullptr))
{
}
inline Application::Application(int argc, char** argv) :
Application(argc, static_cast<const char**>(argv))
{
}
void Application::AddComponent(std::unique_ptr<ApplicationComponent>&& component)
{
m_components.emplace_back(std::move(component));
}
inline void Application::Quit()
{
m_running = false;
}
}
#include <Nazara/Core/DebugOff.hpp>