1
0
Fork 0
spectre/include/Spectre/Scene/ICamera.h
2016-01-10 09:26:43 +01:00

18 lines
No EOL
323 B
C++

#ifndef SPECTRE_SCENE_ICAMERA_H
#define SPECTRE_SCENE_ICAMERA_H
#include <Spectre/Math/Matrix4.h>
// Camera interface.
class ICamera
{
public :
virtual ~ICamera() {};
virtual const Matrix4f& getViewMatrix() const = 0;
virtual const Matrix4f& getProjectionMatrix() const = 0;
};
#endif /* SPECTRE_SCENE_ICAMERA_H */