diff options
author | aap <aap@papnet.eu> | 2019-06-27 09:53:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 09:53:55 +0200 |
commit | ff56b39a274b58599bece6fd6961ccf21af96d0b (patch) | |
tree | c95b973b65aaa63fbf3302d81790e0e770100f11 /src/render/Hud.h | |
parent | Merge pull request #60 from erorcun/erorcun (diff) | |
parent | Finished Hud.cpp (diff) | |
download | re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar.gz re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar.bz2 re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar.lz re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar.xz re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.tar.zst re3-ff56b39a274b58599bece6fd6961ccf21af96d0b.zip |
Diffstat (limited to 'src/render/Hud.h')
-rw-r--r-- | src/render/Hud.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/render/Hud.h b/src/render/Hud.h index 260e5312..c4a768f4 100644 --- a/src/render/Hud.h +++ b/src/render/Hud.h @@ -34,7 +34,6 @@ class CHud { public: static CSprite2d *Sprites; - static wchar *m_HelpMessage; static wchar *m_LastHelpMessage; static int32 &m_HelpMessageState; @@ -62,6 +61,7 @@ public: static bool &m_Wants_To_Draw_Hud; static bool &m_Wants_To_Draw_3dMarkers; static wchar(*m_BigMessage)[128]; + static wchar *m_LastBigMessage; static float BigMessageInUse[6]; static float BigMessageAlpha[6]; static float BigMessageX[6]; @@ -81,16 +81,16 @@ public: static int16 &PagerOn; public: + static void Draw(); + static void DrawAfterFade(); + static void GetRidOfAllHudMessages(); static void Initialise(); - static void Shutdown(); static void ReInitialise(); - static void GetRidOfAllHudMessages(); - static void SetZoneName(wchar *name); + static void SetBigMessage(wchar *message, int16 style); static void SetHelpMessage(wchar *message, bool quick); - static void SetVehicleName(wchar *name); - static void Draw(); - static void DrawAfterFade(); static void SetMessage(wchar *message); - static void SetBigMessage(wchar *message, int16 style); static void SetPagerMessage(wchar *message); + static void SetVehicleName(wchar *name); + static void SetZoneName(wchar *name); + static void Shutdown(); }; |