You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
489 B
C++
27 lines
489 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();
|
|
};
|
|
}
|
|
|
|
#endif // OPENCS_VIEW_OVERLAYSYSTEM_H
|