diff options
Diffstat (limited to '')
-rw-r--r-- | src/control/Pickups.cpp | 2 | ||||
-rw-r--r-- | src/control/Pickups.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/control/Pickups.cpp b/src/control/Pickups.cpp index 2de30a0a..1ab09d52 100644 --- a/src/control/Pickups.cpp +++ b/src/control/Pickups.cpp @@ -36,6 +36,8 @@ int16 CPickups::NumMessages; int32 CPickups::aPickUpsCollected[NUMCOLLECTEDPICKUPS]; int16 CPickups::CollectedPickUpIndex; +int32 CPickups::PlayerOnWeaponPickup; + // unused bool CPickups::bPickUpcamActivated; CVehicle *CPickups::pPlayerVehicle; diff --git a/src/control/Pickups.h b/src/control/Pickups.h index 0a73696a..423f864b 100644 --- a/src/control/Pickups.h +++ b/src/control/Pickups.h @@ -70,6 +70,8 @@ class CPickups static int16 NumMessages; static tPickupMessage aMessages[NUMPICKUPMESSAGES]; public: + static int32 PlayerOnWeaponPickup; + static void Init(); static void Update(); static void RenderPickUpText(); |