summaryrefslogtreecommitdiffstats
path: root/src/render/Particle.h
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2021-01-12 22:07:24 +0100
committerFire-Head <Fire-Head@users.noreply.github.com>2021-01-12 22:07:24 +0100
commit3648ef4687967c7363c9c61f4610679484dc478e (patch)
tree29e9018c263edde8792a5e4a6917bfc9007f721c /src/render/Particle.h
parentSector sizes (diff)
downloadre3-3648ef4687967c7363c9c61f4610679484dc478e.tar
re3-3648ef4687967c7363c9c61f4610679484dc478e.tar.gz
re3-3648ef4687967c7363c9c61f4610679484dc478e.tar.bz2
re3-3648ef4687967c7363c9c61f4610679484dc478e.tar.lz
re3-3648ef4687967c7363c9c61f4610679484dc478e.tar.xz
re3-3648ef4687967c7363c9c61f4610679484dc478e.tar.zst
re3-3648ef4687967c7363c9c61f4610679484dc478e.zip
Diffstat (limited to '')
-rw-r--r--src/render/Particle.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/render/Particle.h b/src/render/Particle.h
index 5542dc02..edfd9b77 100644
--- a/src/render/Particle.h
+++ b/src/render/Particle.h
@@ -18,11 +18,6 @@ public:
uint32 m_nTimeWhenWillBeDestroyed;
uint32 m_nTimeWhenColorWillBeChanged;
float m_fZGround;
- CVector m_vecParticleMovementOffset;
- int16 m_nCurrentZRotation;
- uint16 m_nZRotationTimer;
- float m_fCurrentZRadius;
- uint16 m_nZRadiusTimer;
uint8 m_nColorIntensity;
uint8 m_nAlpha;
float m_fSize;
@@ -35,12 +30,20 @@ public:
uint8 m_nCurrentFrame;
RwRGBA m_Color;
CParticle *m_pNext;
+
+ //CVector m_vecParticleMovementOffset;
+ //int16 m_nCurrentZRotation;
+ //uint16 m_nZRotationTimer;
+ //float m_fCurrentZRadius;
+ //uint16 m_nZRadiusTimer;
+ int32 field_4C;
+
CParticle()
{
;
}
-
+
~CParticle()
{
;
@@ -97,12 +100,9 @@ public:
static void HandleShootableBirdsStuff(CEntity *entity, CVector const&camPos);
};
-extern bool clearWaterDrop;
-extern int32 numWaterDropOnScreen;
extern RwRaster *gpCarSplashRaster[];
extern RwRaster *gpHeatHazeRaster;
-extern RwRaster *gpDotRaster;
extern RwRaster *gpRainDripRaster[];
extern RwRaster *gpRainDripDarkRaster[];
-VALIDATE_SIZE(CParticle, 0x58);
+VALIDATE_SIZE(CParticle, 0x50);