17 lines
243 B
C
17 lines
243 B
C
|
#ifndef CAMERA_H
|
||
|
#define CAMERA_H
|
||
|
|
||
|
#include "Transform.h"
|
||
|
|
||
|
class Camera {
|
||
|
public:
|
||
|
Camera();
|
||
|
Transform transform;
|
||
|
void MakeCurrent();
|
||
|
static Camera *GetCurrentCamera();
|
||
|
private:
|
||
|
static Camera *currentCamera;
|
||
|
};
|
||
|
|
||
|
#endif /* CAMERA_H */
|