Sdk/CameraComponent: Fix compilation

This commit is contained in:
Lynix 2016-11-19 15:43:17 +01:00
parent 2d13ff7aac
commit f629803f90
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ namespace Ndk
float GetZNear() const override;
inline void SetFOV(float fov);
inline void SetLayer(unsigned int layer);
void SetLayer(unsigned int layer);
inline void SetProjectionType(Nz::ProjectionType projection);
inline void SetSize(const Nz::Vector2f& size);
inline void SetSize(float width, float height);

View File

@ -99,7 +99,7 @@ namespace Ndk
* \brief Gets the field of view of the camera
* \return Field of view of the camera
*/
float CameraComponent::GetFOV() const
inline float CameraComponent::GetFOV() const
{
return m_fov;
}