17 lines
352 B
C++
17 lines
352 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
|
|
|
namespace Ndk
|
|
{
|
|
inline NzPhysWorld& PhysicsSystem::GetWorld()
|
|
{
|
|
return m_world;
|
|
}
|
|
|
|
inline const NzPhysWorld& PhysicsSystem::GetWorld() const
|
|
{
|
|
return m_world;
|
|
}
|
|
}
|