diff options
Diffstat (limited to 'source/Pickup.h')
-rw-r--r-- | source/Pickup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Pickup.h b/source/Pickup.h index 88b1fc167..6c5979e13 100644 --- a/source/Pickup.h +++ b/source/Pickup.h @@ -33,10 +33,10 @@ public: virtual void SpawnOn(cClientHandle & a_ClientHandle) override; - virtual bool CollectedBy( cPlayer* a_Dest ); //tolua_export + virtual bool CollectedBy(cPlayer * a_Dest); //tolua_export - void Tick(float a_Dt); - void HandlePhysics(float a_Dt); + virtual void Tick(float a_Dt, MTRand & a_TickRandom) override; + virtual void HandlePhysics(float a_Dt) override; const Vector3f & GetSpeed(void) const {return m_Speed; } |