mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
28 lines
517 B
C++
28 lines
517 B
C++
#ifndef OPENCS_VIEW_OVERLAYSYSTEM_H
|
|
#define OPENCS_VIEW_OVERLAYSYSTEM_H
|
|
|
|
namespace Ogre
|
|
{
|
|
class OverlaySystem;
|
|
}
|
|
|
|
namespace CSVRender
|
|
{
|
|
class OverlaySystem
|
|
{
|
|
Ogre::OverlaySystem *mOverlaySystem;
|
|
static OverlaySystem *mOverlaySystemInstance;
|
|
|
|
public:
|
|
|
|
OverlaySystem();
|
|
~OverlaySystem();
|
|
static OverlaySystem &instance();
|
|
|
|
Ogre::OverlaySystem *get();
|
|
void destroy();
|
|
};
|
|
}
|
|
|
|
#endif // OPENCS_VIEW_OVERLAYSYSTEM_H
|