diff options
author | Persson-dev <sim16.prib@gmail.com> | 2022-04-21 13:27:45 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2022-04-21 20:57:55 +0200 |
commit | 9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06 (patch) | |
tree | 8b0c8a04cfcf089bf8491f427a6eac03216f2c11 /src/Protocol/Protocol_1_14.h | |
parent | Implement farmland trampling (#5401) (diff) | |
download | cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar.gz cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar.bz2 cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar.lz cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar.xz cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.tar.zst cuberite-9c42d09ff890fb5f6f5eeab0714b0ed7ce515d06.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol_1_14.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/Protocol/Protocol_1_14.h b/src/Protocol/Protocol_1_14.h index a5813819b..81cd03166 100644 --- a/src/Protocol/Protocol_1_14.h +++ b/src/Protocol/Protocol_1_14.h @@ -67,3 +67,75 @@ protected: virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) const override; virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) const override; }; + + + + + +class cProtocol_1_14_1: + public cProtocol_1_14 +{ + using Super = cProtocol_1_14; + +public: + + using Super::Super; + +protected: + + virtual Version GetProtocolVersion() const override; +}; + + + + + +class cProtocol_1_14_2: + public cProtocol_1_14_1 +{ + using Super = cProtocol_1_14_1; + +public: + + using Super::Super; + +protected: + + virtual Version GetProtocolVersion() const override; +}; + + + + + +class cProtocol_1_14_3: + public cProtocol_1_14_2 +{ + using Super = cProtocol_1_14_2; + +public: + + using Super::Super; + +protected: + + virtual Version GetProtocolVersion() const override; +}; + + + + + +class cProtocol_1_14_4: + public cProtocol_1_14_3 +{ + using Super = cProtocol_1_14_3; + +public: + + using Super::Super; + +protected: + + virtual Version GetProtocolVersion() const override; +}; |