summaryrefslogtreecommitdiffstats
path: root/src/render/Hud.h
diff options
context:
space:
mode:
author_AG <gennariarmando@outlook.com>2019-06-27 09:47:03 +0200
committer_AG <gennariarmando@outlook.com>2019-06-27 09:49:08 +0200
commit677821d6cc093cf2d984865e66c331b445d630ad (patch)
treee87380f777767686e90a3bae496023ffa8a564c6 /src/render/Hud.h
parentReverted Pad.cpp to previous state. (diff)
downloadre3-677821d6cc093cf2d984865e66c331b445d630ad.tar
re3-677821d6cc093cf2d984865e66c331b445d630ad.tar.gz
re3-677821d6cc093cf2d984865e66c331b445d630ad.tar.bz2
re3-677821d6cc093cf2d984865e66c331b445d630ad.tar.lz
re3-677821d6cc093cf2d984865e66c331b445d630ad.tar.xz
re3-677821d6cc093cf2d984865e66c331b445d630ad.tar.zst
re3-677821d6cc093cf2d984865e66c331b445d630ad.zip
Diffstat (limited to '')
-rw-r--r--src/render/Hud.h16
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();
};