mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
24 lines
406 B
C++
24 lines
406 B
C++
|
#ifndef GAME_RENDERING_EXTERNALRENDERING_H
|
||
|
#define GAME_RENDERING_EXTERNALRENDERING_H
|
||
|
|
||
|
namespace Ogre
|
||
|
{
|
||
|
class SceneManager;
|
||
|
}
|
||
|
|
||
|
namespace MWRender
|
||
|
{
|
||
|
/// \brief Base class for out of world rendering
|
||
|
class ExternalRendering
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual void setup (Ogre::SceneManager *sceneManager) = 0;
|
||
|
|
||
|
virtual ~ExternalRendering() {}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|