diff options
Diffstat (limited to 'src/koopatlas/hud.h')
-rw-r--r-- | src/koopatlas/hud.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/koopatlas/hud.h b/src/koopatlas/hud.h new file mode 100644 index 0000000..71dacdd --- /dev/null +++ b/src/koopatlas/hud.h @@ -0,0 +1,28 @@ +#include "koopatlas/core.h" + +class dWMHud_c : public dBase_c { + public: + dWMHud_c(); + + int onCreate(); + int onDelete(); + int onExecute(); + int onDraw(); + + bool layoutLoaded; + m2d::EmbedLayout_c layout; + + void updateText(); + + void showPointBar(); + void hidePointBar(); + + void setPointName(); + + static dWMHud_c *build(); + static dWMHud_c *instance; + + private: + bool isPointBarShown; +}; + |