diff options
author | bibo38 <bibo38@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
commit | 61078e8402dc289cca0ace12933a688660d10b03 (patch) | |
tree | 9fa0cb5e8037f06f24981e45f6ddac2b60554fcc /src/Protocol/Protocol110x.h | |
parent | Remove settings.ini world migration code (#3360) (diff) | |
download | cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.gz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.bz2 cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.lz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.xz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.zst cuberite-61078e8402dc289cca0ace12933a688660d10b03.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol110x.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Protocol/Protocol110x.h b/src/Protocol/Protocol110x.h new file mode 100644 index 000000000..64ef8acb5 --- /dev/null +++ b/src/Protocol/Protocol110x.h @@ -0,0 +1,34 @@ + +// Protocol110x.h + +/* +Declares the 1.10.x protocol classes: + - cProtocol1100 + - release 1.10.0 protocol (#210) +(others may be added later in the future for the 1.10 release series) +*/ + + + + + +#pragma once + +#include "Protocol19x.h" + +class cProtocol1100 : + public cProtocol194 +{ + typedef cProtocol194 super; + +public: + cProtocol1100(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); + + virtual void SendSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch) override; + + virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override; + +protected: + virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) override; + virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) override; +}; |