diff options
author | Mattes D <github@xoft.cz> | 2014-09-28 22:04:30 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-28 22:04:30 +0200 |
commit | 8d55cd409e38d8759b61e89a4b3dea678c1e5f98 (patch) | |
tree | b587e2f8d0b1536e1e4ff0d0bc62c998eccd5141 /src/Protocol/Protocol15x.h | |
parent | Merge pull request #1463 from mc-server/sp_docs (diff) | |
parent | Compilation fix (diff) | |
download | cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar.gz cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar.bz2 cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar.lz cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar.xz cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.tar.zst cuberite-8d55cd409e38d8759b61e89a4b3dea678c1e5f98.zip |
Diffstat (limited to 'src/Protocol/Protocol15x.h')
-rw-r--r-- | src/Protocol/Protocol15x.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/Protocol/Protocol15x.h b/src/Protocol/Protocol15x.h deleted file mode 100644 index 968d5ebcf..000000000 --- a/src/Protocol/Protocol15x.h +++ /dev/null @@ -1,42 +0,0 @@ - -// Protocol15x.h - -/* -Declares the 1.5.x protocol classes: - - cProtocol150 - - release 1.5 and 1.5.1 protocol (#60) - - release 1.5.2 protocol (#61; no relevant changes found) -*/ - - - - - -#pragma once - -#include "Protocol14x.h" - - - - - -class cProtocol150 : - public cProtocol146 -{ - typedef cProtocol146 super; - -public: - cProtocol150(cClientHandle * a_Client); - - virtual void SendWindowOpen (const cWindow & a_Window) override; - virtual void SendParticleEffect (const AString & a_ParticleName, float a_SrcX, float a_SrcY, float a_SrcZ, float a_OffsetX, float a_OffsetY, float a_OffsetZ, float a_ParticleData, int a_ParticleAmount) override; - virtual void SendScoreboardObjective (const AString & a_Name, const AString & a_DisplayName, Byte a_Mode) override; - virtual void SendScoreUpdate (const AString & a_Objective, const AString & a_Player, cObjective::Score a_Score, Byte a_Mode) override; - virtual void SendDisplayObjective (const AString & a_Objective, cScoreboard::eDisplaySlot a_Display) override; - - virtual int ParseWindowClick(void); -} ; - - - - |