Files
ViktorLjung 4b9cb71cca Fixad FOV
Levelgen Spawnfrequency
2014-03-14 00:57:52 +01:00

19 lines
293 B
C++

#ifndef Components_Camera_h__
#define Components_Camera_h__
#include "Component.h"
namespace Components
{
struct Camera : Component
{
Camera() : FOV(glm::radians(45.f)), NearClip(0.1f), FarClip(100.f) { }
float FOV;
float NearClip;
float FarClip;
};
}
#endif // !Components_Camera_h__