17 lines
294 B
C++
17 lines
294 B
C++
#ifndef CAMERANODE_H
|
|
#define CAMERANODE_H
|
|
|
|
#include "scenenode.h"
|
|
#include "trackballcamera.h"
|
|
|
|
/**
|
|
* @brief The CameraNode class is a scene node that can be used by the renderer
|
|
*/
|
|
class CameraNode : public TrackBallCamera, SceneNode
|
|
{
|
|
public:
|
|
CameraNode() {}
|
|
};
|
|
|
|
#endif // CAMERANODE_H
|