SparrowRenderer/camera.h
2015-11-18 18:31:06 +01:00

15 lines
246 B
C++

#ifndef CAMERA_H
#define CAMERA_H
#include <glm/mat4x4.hpp>
class Camera{
public:
virtual glm::mat4 getProjectionMatrix() = 0;
virtual glm::mat4 getViewMatrix() = 0;
virtual void resize(int width, int height) = 0;
};
#endif // CAMERA_H