2021-01-13 16:47:16 -06:00
|
|
|
#ifndef CAMERA_H
|
|
|
|
#define CAMERA_H
|
|
|
|
|
2021-01-14 11:52:01 -06:00
|
|
|
#include "Spatial.h"
|
2021-01-13 16:47:16 -06:00
|
|
|
|
2021-01-14 11:52:01 -06:00
|
|
|
class Camera : public Spatial {
|
2021-01-13 16:47:16 -06:00
|
|
|
public:
|
|
|
|
Camera();
|
|
|
|
void MakeCurrent();
|
|
|
|
static Camera *GetCurrentCamera();
|
|
|
|
private:
|
|
|
|
static Camera *currentCamera;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CAMERA_H */
|