diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-30 23:18:10 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-30 23:18:10 +0200 |
commit | be808bed539f866c72059aa61751144ce5bdb3a4 (patch) | |
tree | 2b629178b15fc7c46f3128efeb815ac05c65d044 /src/ParticleObject.cpp | |
parent | Completed CReplay (diff) | |
parent | little cleanup (diff) | |
download | re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.gz re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.bz2 re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.lz re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.xz re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.zst re3-be808bed539f866c72059aa61751144ce5bdb3a4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ParticleObject.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ParticleObject.cpp b/src/ParticleObject.cpp index 58f2cfcb..cf6e84bf 100644 --- a/src/ParticleObject.cpp +++ b/src/ParticleObject.cpp @@ -2,7 +2,9 @@ #include "patcher.h" #include "ParticleObject.h" -WRAPPER void CParticleObject::AddObject(uint16, const CVector &pos, bool remove) { EAXJMP(0x4BC4D0); } +WRAPPER void CParticleObject::AddObject(uint16 type, const CVector &pos, bool remove) { EAXJMP(0x4BC4D0); } +WRAPPER void CParticleObject::AddObject(uint16 type, const CVector &pos, float size, bool remove) { EAXJMP(0x4BC520); } +WRAPPER void CParticleObject::AddObject(uint16 type, const CVector &pos, const CVector &dir, float size, bool remove) { EAXJMP(0x4BC570); } // Converted from static void __cdecl CParticleObject::Initialise() 0x42C760 void CParticleObject::Initialise() |