diff options
Diffstat (limited to 'src/render/SpecialFX.h')
-rw-r--r-- | src/render/SpecialFX.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/render/SpecialFX.h b/src/render/SpecialFX.h index 10b22a77..7b77280b 100644 --- a/src/render/SpecialFX.h +++ b/src/render/SpecialFX.h @@ -1,5 +1,7 @@ #pragma once +#include "rwplcore.h" + class CSpecialFX { public: @@ -109,4 +111,13 @@ public: static void Init();
static void Render();
static void RegisterOne(CVector vecPos, const char *pText, uint8 bRed, uint8 bGreen, uint8 bBlue, float fSize, float fOpacity);
-};
\ No newline at end of file +};
+
+class CSpecialParticleStuff
+{
+ static uint32 BoatFromStart;
+public:
+ static void CreateFoamAroundObject(CMatrix*, float, float, float, int32);
+ static void StartBoatFoamAnimation();
+ static void UpdateBoatFoamAnimation(CMatrix*);
+};
|