summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol110x.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-12-15 20:21:43 +0100
committerMattes D <github@xoft.cz>2016-12-16 00:07:22 +0100
commit0e3b3be7662f03b7487408f70548eaca1188da3d (patch)
tree3751d17812c46e5847684d8f968f24c4a4e268d2 /src/Protocol/Protocol110x.h
parentAPIDump: Load the official undocumented from alternate location. (diff)
downloadcuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.gz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.bz2
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.lz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.xz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.zst
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.zip
Diffstat (limited to 'src/Protocol/Protocol110x.h')
-rw-r--r--src/Protocol/Protocol110x.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/Protocol/Protocol110x.h b/src/Protocol/Protocol110x.h
deleted file mode 100644
index 64ef8acb5..000000000
--- a/src/Protocol/Protocol110x.h
+++ /dev/null
@@ -1,34 +0,0 @@
-
-// 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;
-};