Minor fixes

This commit is contained in:
SirLynix
2023-07-30 10:56:28 +02:00
parent b191dacc58
commit 651261d28a
4 changed files with 5 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ namespace Nz
m_modules(std::forward<ModuleConfig>(configs)...)
{
}
template<typename... ModuleList>
template<typename... ModuleConfig>
Application<ModuleList...>::Application(int argc, const Pointer<const char>* argv, ModuleConfig&&... configs) :

View File

@@ -39,10 +39,10 @@ namespace Nz
template<typename T> T& GetComponent();
template<typename T> const T& GetComponent() const;
int Run();
inline void Quit();
int Run();
bool Update(Time elapsedTime);
ApplicationBase& operator=(const ApplicationBase&) = delete;

View File

@@ -9,6 +9,7 @@
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Core/Config.hpp>
#include <string>
#include <thread>
namespace Nz