diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-03 23:51:26 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-03 23:51:26 +0100 |
commit | 01c723e89eb364b9245386bcdd2902b287ee2982 (patch) | |
tree | 9b805e78064e2e3f896cb6d9ba189a5d92af6e51 | |
parent | Added SendMessageXXX() to cPlayer (diff) | |
download | cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar.gz cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar.bz2 cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar.lz cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar.xz cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.tar.zst cuberite-01c723e89eb364b9245386bcdd2902b287ee2982.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/ExpOrb.h | 1 | ||||
-rw-r--r-- | src/Entities/Floater.h | 4 | ||||
-rw-r--r-- | src/Entities/Pickup.h | 7 |
3 files changed, 8 insertions, 4 deletions
diff --git a/src/Entities/ExpOrb.h b/src/Entities/ExpOrb.h index a062eedd3..47d86922c 100644 --- a/src/Entities/ExpOrb.h +++ b/src/Entities/ExpOrb.h @@ -13,6 +13,7 @@ class cExpOrb : typedef cExpOrb super; public: + CLASS_PROTODEF(cExpOrb); cExpOrb(double a_X, double a_Y, double a_Z, int a_Reward); cExpOrb(const Vector3d & a_Pos, int a_Reward); diff --git a/src/Entities/Floater.h b/src/Entities/Floater.h index 162b74e75..865d6dc50 100644 --- a/src/Entities/Floater.h +++ b/src/Entities/Floater.h @@ -14,8 +14,10 @@ class cFloater : typedef cFloater super; public: - //tolua_end + + CLASS_PROTODEF(cFloater); + cFloater(double a_X, double a_Y, double a_Z, Vector3d a_Speed, int a_PlayerID, int a_CountDownTime); virtual void SpawnOn(cClientHandle & a_Client) override; diff --git a/src/Entities/Pickup.h b/src/Entities/Pickup.h index d39eda298..c273567d1 100644 --- a/src/Entities/Pickup.h +++ b/src/Entities/Pickup.h @@ -18,15 +18,16 @@ class cPlayer; class cPickup : public cEntity { - // tolua_end typedef cEntity super; public: + // tolua_end + CLASS_PROTODEF(cPickup); - cPickup(double a_PosX, double a_PosY, double a_PosZ, const cItem & a_Item, bool IsPlayerCreated, float a_SpeedX = 0.f, float a_SpeedY = 0.f, float a_SpeedZ = 0.f); // tolua_export + cPickup(double a_PosX, double a_PosY, double a_PosZ, const cItem & a_Item, bool IsPlayerCreated, float a_SpeedX = 0.f, float a_SpeedY = 0.f, float a_SpeedZ = 0.f); - cItem & GetItem(void) {return m_Item; } // tolua_export + cItem & GetItem(void) {return m_Item; } // tolua_export const cItem & GetItem(void) const {return m_Item; } virtual void SpawnOn(cClientHandle & a_ClientHandle) override; |