Minor fixes
This commit is contained in:
parent
b191dacc58
commit
651261d28a
|
|
@ -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) :
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include <NazaraUtils/Prerequisites.hpp>
|
||||
#include <Nazara/Core/Config.hpp>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
|
||||
namespace Nz
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
// This file is part of the "Nazara Engine - JoltPhysics3D module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#include <Nazara/JoltPhysics3D/Debug.hpp>
|
||||
#include <cassert>
|
||||
#include <Nazara/JoltPhysics3D/Debug.hpp>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue