summaryrefslogtreecommitdiffstats
path: root/src/objects/Stinger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objects/Stinger.h')
-rw-r--r--src/objects/Stinger.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/objects/Stinger.h b/src/objects/Stinger.h
index d1b57ce7..250cf62d 100644
--- a/src/objects/Stinger.h
+++ b/src/objects/Stinger.h
@@ -11,16 +11,17 @@ public:
#define NUM_STINGER_SEGMENTS (12)
+enum {
+ STINGERSTATE_NONE = 0,
+ STINGERSTATE_DEPLOYING,
+ STINGERSTATE_DEPLOYED,
+ STINGERSTATE_UNDEPLOYING,
+ STINGERSTATE_REMOVE,
+};
+
class CStinger
{
- enum {
- STINGERSTATE_NONE = 0,
- STINGERSTATE_DEPLOYING,
- STINGERSTATE_DEPLOYED,
- STINGERSTATE_UNDEPLOYING,
- STINGERSTATE_REMOVE,
- };
-
+public:
bool bIsDeployed;
uint32 m_nTimeOfDeploy;
CVector m_vPos;
@@ -30,7 +31,6 @@ class CStinger
CStingerSegment *pSpikes[NUM_STINGER_SEGMENTS];
class CPed *pOwner;
uint8 m_nSpikeState;
-public:
CStinger();
void Init(CPed *pPed);
void Remove();