summaryrefslogtreecommitdiffstats
path: root/src/User.h
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-06-13 02:40:46 +0200
committerFire-Head <Fire-Head@users.noreply.github.com>2019-06-13 02:40:46 +0200
commit06e48c70595808f8c3143d4284e5757e29d81800 (patch)
treee321a452104d4dd3716b1bdfaa1bda81a739be26 /src/User.h
parentCPad done (diff)
parentMerge pull request #6 from GTAmodding/master (diff)
downloadre3-06e48c70595808f8c3143d4284e5757e29d81800.tar
re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.gz
re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.bz2
re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.lz
re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.xz
re3-06e48c70595808f8c3143d4284e5757e29d81800.tar.zst
re3-06e48c70595808f8c3143d4284e5757e29d81800.zip
Diffstat (limited to 'src/User.h')
-rw-r--r--src/User.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/User.h b/src/User.h
index b2d0b053..8b744c7e 100644
--- a/src/User.h
+++ b/src/User.h
@@ -1,14 +1,12 @@
#pragma once
-#include "common.h"
-
class COnscreenTimerEntry
{
public:
uint32 m_nTimerOffset;
uint32 m_nCounterOffset;
- uint8 m_aTimerText[10];
- uint8 m_aCounterText[10];
+ char m_aTimerText[10];
+ char m_aCounterText[10];
uint16 m_nType;
char m_bCounterBuffer[42];
char m_bTimerBuffer[42];
@@ -24,20 +22,14 @@ public:
static_assert(sizeof(COnscreenTimerEntry) == 0x74, "COnscreenTimerEntry: error");
-class CTheScripts{
-public:
- static char *ScriptSpace;//[163840]
-};
-
class COnscreenTimer
{
public:
COnscreenTimerEntry m_sEntries[NUMONSCREENTIMERENTRIES];
bool m_bProcessed;
bool m_bDisabled;
- char field_119[2];
- int Init();
+ void Init();
void Process();
void ProcessForDisplay();