diff options
author | withmorten <morten.with@gmail.com> | 2021-01-13 00:18:58 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-13 00:18:58 +0100 |
commit | 232d990e6d76e52821a5cc69d51048a94ddec867 (patch) | |
tree | 54edaa621f908d199089f14aa1c0ccaeda9d10a6 /src/vehicles | |
parent | fix (diff) | |
download | re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar.gz re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar.bz2 re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar.lz re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar.xz re3-232d990e6d76e52821a5cc69d51048a94ddec867.tar.zst re3-232d990e6d76e52821a5cc69d51048a94ddec867.zip |
Diffstat (limited to 'src/vehicles')
-rw-r--r-- | src/vehicles/Heli.cpp | 2 | ||||
-rw-r--r-- | src/vehicles/Heli.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/vehicles/Heli.cpp b/src/vehicles/Heli.cpp index 644fdde8..7854f7fd 100644 --- a/src/vehicles/Heli.cpp +++ b/src/vehicles/Heli.cpp @@ -762,7 +762,7 @@ CHeli::InitHelis(void) } CHeli* -GenerateHeli(bool catalina) +CHeli::GenerateHeli(bool catalina) { CHeli *heli; CVector heliPos; diff --git a/src/vehicles/Heli.h b/src/vehicles/Heli.h index 1f372e42..c5ae08e2 100644 --- a/src/vehicles/Heli.h +++ b/src/vehicles/Heli.h @@ -83,13 +83,14 @@ public: bool SendDownSwat(void); static void InitHelis(void); + static CHeli *GenerateHeli(bool catalina); // out of class in III PC and later because of SecuROM static void UpdateHelis(void); static void SpecialHeliPreRender(void); static bool TestRocketCollision(CVector *coors); static bool TestBulletCollision(CVector *line0, CVector *line1, CVector *bulletPos, int32 damage); static bool TestSniperCollision(CVector *line0, CVector *line1); - static void StartCatalinaFlyBy(void); + static void StartCatalinaFlyBy(void); // out of class in III PC and later because of SecuROM static void RemoveCatalinaHeli(void); static CHeli *FindPointerToCatalinasHeli(void); static void CatalinaTakeOff(void); |