From 6a32981ba504d197ac3a3bd0cb4423f8e62b4ab2 Mon Sep 17 00:00:00 2001 From: Fire-Head Date: Wed, 27 May 2020 02:16:31 +0300 Subject: VC CParticle done --- src/control/Replay.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/control') diff --git a/src/control/Replay.h b/src/control/Replay.h index b369c13d..0d269316 100644 --- a/src/control/Replay.h +++ b/src/control/Replay.h @@ -11,6 +11,7 @@ class CVehicle; struct CReference; +enum tParticleType; struct CAddressInReplayBuffer { @@ -287,6 +288,8 @@ public: static bool IsPlayingBack() { return Mode == MODE_PLAYBACK; } static bool IsPlayingBackFromFile() { return bPlayingBackFromFile; } + static void RecordParticle(tParticleType type, CVector const &vecPos, CVector const &vecDir, float fSize, RwRGBA const&color) + { } //TODO private: static void RecordThisFrame(void); static void StorePedUpdate(CPed *ped, int id); -- cgit v1.2.3 From 90947a608f514dab993163d8f2dc4f98666e5000 Mon Sep 17 00:00:00 2001 From: Fire-Head Date: Wed, 27 May 2020 03:18:02 +0300 Subject: fix linux build --- src/control/Replay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/control') diff --git a/src/control/Replay.h b/src/control/Replay.h index 0d269316..fd484017 100644 --- a/src/control/Replay.h +++ b/src/control/Replay.h @@ -2,6 +2,7 @@ #include "Pools.h" #include "World.h" +#include "ParticleType.h" #ifdef FIX_BUGS #ifndef DONT_FIX_REPLAY_BUGS @@ -11,7 +12,6 @@ class CVehicle; struct CReference; -enum tParticleType; struct CAddressInReplayBuffer { -- cgit v1.2.3