Files
escape-the-dawn/Escape-the-Dawn/Components/Camera.h
T
2014-03-06 21:32:31 +01:00

18 lines
226 B
C++

#ifndef Camera_h__
#define Camera_h__
#include "Component.h"
namespace Components
{
struct Camera : Component
{
int FOV;
int NearClip;
int FarClip;
};
REGISTER_COMPONENT("Camera", Camera);
}
#endif // !Camera_h__