From 1a7912744ff2e0abfeae0d2d75af80d73209580c Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 19 Aug 2013 11:39:13 +0200 Subject: Moved entities into the Entities subfolder. --- source/Pickup.h | 59 --------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 source/Pickup.h (limited to 'source/Pickup.h') diff --git a/source/Pickup.h b/source/Pickup.h deleted file mode 100644 index dcdc02137..000000000 --- a/source/Pickup.h +++ /dev/null @@ -1,59 +0,0 @@ - -#pragma once - -#include "Entity.h" -#include "Item.h" - - - - - -class cPlayer; - - - - - -// tolua_begin -class cPickup : - public cEntity -{ - // tolua_end - typedef cEntity super; - -public: - CLASS_PROTODEF(cPickup); - - cPickup(int a_MicroPosX, int a_MicroPosY, int a_MicroPosZ, const cItem & a_Item, float a_SpeedX = 0.f, float a_SpeedY = 0.f, float a_SpeedZ = 0.f); // tolua_export - - virtual bool Initialize(cWorld * a_World) override; - - cItem & GetItem(void) {return m_Item; } // tolua_export - const cItem & GetItem(void) const {return m_Item; } - - virtual void SpawnOn(cClientHandle & a_ClientHandle) override; - - virtual bool CollectedBy(cPlayer * a_Dest); // tolua_export - - virtual void Tick(float a_Dt, cChunk & a_Chunk) override; - - short GetHealth(void) const { return m_Health; } - - /// Returns the number of ticks that this entity has existed - short GetAge(void) const { return (short)(m_Timer / 50); } - -private: - Vector3d m_ResultingSpeed; //Can be used to modify the resulting speed for the current tick ;) - - Vector3d m_WaterSpeed; - - float m_Timer; - - cItem m_Item; - - bool m_bCollected; -}; // tolua_export - - - - -- cgit v1.2.3