summaryrefslogtreecommitdiff
path: root/src/koopatlas/hud.h
blob: 71dacdd7022c61d20b3b8e841dd83ad4ffe7b341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
};