summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-27 07:18:47 +0200
committerGitHub <noreply@github.com>2020-05-27 07:18:47 +0200
commitc06857019235f7483582cd8bbc8e63307de0bde6 (patch)
treef46b1801d031b59b97cf4365abf31ea831087dfd /src/control
parentMerge pull request #601 from Sergeanur/VC/audio3 (diff)
parentfix linux build (diff)
downloadre3-c06857019235f7483582cd8bbc8e63307de0bde6.tar
re3-c06857019235f7483582cd8bbc8e63307de0bde6.tar.gz
re3-c06857019235f7483582cd8bbc8e63307de0bde6.tar.bz2
re3-c06857019235f7483582cd8bbc8e63307de0bde6.tar.lz
re3-c06857019235f7483582cd8bbc8e63307de0bde6.tar.xz
re3-c06857019235f7483582cd8bbc8e63307de0bde6.tar.zst
re3-c06857019235f7483582cd8bbc8e63307de0bde6.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Replay.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/control/Replay.h b/src/control/Replay.h
index b369c13d..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
@@ -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);