Couch
Camera.h
Go to the documentation of this file.
1 
23 #ifndef CAMERA_H
24 #define CAMERA_H
25 
26 #include "Spatial.h"
27 
31 class Camera : public Spatial {
32 public:
33  Camera();
37  void MakeCurrent();
42  static Camera *GetCurrentCamera();
43 private:
44  static Camera *currentCamera;
45 };
46 
47 #endif /* CAMERA_H */
Definition: Camera.h:31
void MakeCurrent()
Definition: Camera.cpp:30
static Camera * GetCurrentCamera()
Definition: Camera.cpp:34
Definition: Spatial.h:35