diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-14 18:03:00 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-14 18:03:00 +0100 |
commit | 37069288d5801acce0ad34878a78aa0daf004135 (patch) | |
tree | 592aa27e4f5e685c4ccf37ab90ebb62f428cb970 /src/Protocol/Protocol.h | |
parent | Merge pull request #429 from worktycho/quickfixs (diff) | |
download | cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar.gz cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar.bz2 cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar.lz cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar.xz cuberite-37069288d5801acce0ad34878a78aa0daf004135.tar.zst cuberite-37069288d5801acce0ad34878a78aa0daf004135.zip |
Diffstat (limited to 'src/Protocol/Protocol.h')
-rw-r--r-- | src/Protocol/Protocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index ff6541aeb..d90ece2b0 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -62,6 +62,7 @@ public: virtual void SendDestroyEntity (const cEntity & a_Entity) = 0; virtual void SendDisconnect (const AString & a_Reason) = 0; virtual void SendEditSign (int a_BlockX, int a_BlockY, int a_BlockZ) = 0; ///< Request the client to open up the sign editor for the sign (1.6+) + virtual void SendEntityEffect (const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration) = 0; virtual void SendEntityEquipment (const cEntity & a_Entity, short a_SlotNum, const cItem & a_Item) = 0; virtual void SendEntityHeadLook (const cEntity & a_Entity) = 0; virtual void SendEntityLook (const cEntity & a_Entity) = 0; @@ -85,6 +86,7 @@ public: virtual void SendPlayerMoveLook (void) = 0; virtual void SendPlayerPosition (void) = 0; virtual void SendPlayerSpawn (const cPlayer & a_Player) = 0; + virtual void SendRemoveEntityEffect (const cEntity & a_Entity, int a_EffectID) = 0; virtual void SendRespawn (void) = 0; virtual void SendExperience (void) = 0; virtual void SendExperienceOrb (const cExpOrb & a_ExpOrb) = 0; |