diff options
Diffstat (limited to '')
| -rw-r--r-- | src/koopatlas/hud.h | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/src/koopatlas/hud.h b/src/koopatlas/hud.h index 8d964c5..347fcb4 100644 --- a/src/koopatlas/hud.h +++ b/src/koopatlas/hud.h @@ -15,14 +15,19 @@ class dWMHud_c : public dBase_c {  		bool layoutLoaded;  		m2d::EmbedLayout_c layout; -		void updateText(); +		void updateLives();  		void showPointBar();  		void hidePointBar();  		void setPointName(); -		void setText(const char *str, int length = -1); -		void setText(const wchar_t *str, int length = -1); +		void checkPointStatus(); +		void setLevelText(const char *str, int length = -1); +		void setLevelText(const wchar_t *str, int length = -1); + +		void setWorldName(); +		void setWorldText(const char *str, int length = -1); +		void setWorldText(const wchar_t *str, int length = -1);  		static dWMHud_c *build();  		static dWMHud_c *instance;  | 
