Minor fixes
This commit is contained in:
parent
b191dacc58
commit
651261d28a
|
|
@ -53,7 +53,7 @@ namespace Nz
|
||||||
m_modules(std::forward<ModuleConfig>(configs)...)
|
m_modules(std::forward<ModuleConfig>(configs)...)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename... ModuleList>
|
template<typename... ModuleList>
|
||||||
template<typename... ModuleConfig>
|
template<typename... ModuleConfig>
|
||||||
Application<ModuleList...>::Application(int argc, const Pointer<const char>* argv, ModuleConfig&&... configs) :
|
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> T& GetComponent();
|
||||||
template<typename T> const T& GetComponent() const;
|
template<typename T> const T& GetComponent() const;
|
||||||
|
|
||||||
int Run();
|
|
||||||
|
|
||||||
inline void Quit();
|
inline void Quit();
|
||||||
|
|
||||||
|
int Run();
|
||||||
|
|
||||||
bool Update(Time elapsedTime);
|
bool Update(Time elapsedTime);
|
||||||
|
|
||||||
ApplicationBase& operator=(const ApplicationBase&) = delete;
|
ApplicationBase& operator=(const ApplicationBase&) = delete;
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
#include <NazaraUtils/Prerequisites.hpp>
|
#include <NazaraUtils/Prerequisites.hpp>
|
||||||
#include <Nazara/Core/Config.hpp>
|
#include <Nazara/Core/Config.hpp>
|
||||||
|
#include <string>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
namespace Nz
|
namespace Nz
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
// This file is part of the "Nazara Engine - JoltPhysics3D module"
|
// This file is part of the "Nazara Engine - JoltPhysics3D module"
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
#include <Nazara/JoltPhysics3D/Debug.hpp>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <Nazara/JoltPhysics3D/Debug.hpp>
|
||||||
|
|
||||||
namespace Nz
|
namespace Nz
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue