Handle windows and EnTT with application components

This commit is contained in:
SirLynix
2023-01-21 12:03:02 +01:00
committed by Jérôme Leclercq
parent 18851c9185
commit da9eb14ebe
16 changed files with 287 additions and 65 deletions

View File

@@ -7,6 +7,20 @@
namespace Nz
{
inline ApplicationComponent::ApplicationComponent(ApplicationBase& app) :
m_app(app)
{
}
inline ApplicationBase& ApplicationComponent::GetApp()
{
return m_app;
}
inline const ApplicationBase& ApplicationComponent::GetApp() const
{
return m_app;
}
}
#include <Nazara/Core/DebugOff.hpp>