diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-14 21:34:37 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-14 21:34:37 +0100 |
commit | 75cc675bf2fe0bf69c819b47a3235bbb6c14baaa (patch) | |
tree | 6eb2509ab8a349147162673d5650ff04be62a43c /source/Protocol/Protocol15x.h | |
parent | Added a Noop fluid simulator that doesn't do anything with the fluid (fluid doesn't spread at all, behaves like a normal block) (diff) | |
download | cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar.gz cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar.bz2 cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar.lz cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar.xz cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.tar.zst cuberite-75cc675bf2fe0bf69c819b47a3235bbb6c14baaa.zip |
Diffstat (limited to 'source/Protocol/Protocol15x.h')
-rw-r--r-- | source/Protocol/Protocol15x.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/source/Protocol/Protocol15x.h b/source/Protocol/Protocol15x.h new file mode 100644 index 000000000..f09ba09d7 --- /dev/null +++ b/source/Protocol/Protocol15x.h @@ -0,0 +1,36 @@ +
+// Protocol15x.h
+
+/*
+Declares the 1.5.x protocol classes:
+ - cProtocol150
+ - release 1.5 protocol (#60)
+(others may be added later in the future for the 1.5 release series)
+*/
+
+
+
+
+
+#pragma once
+
+#include "Protocol14x.h"
+
+
+
+
+
+class cProtocol150 :
+ public cProtocol146
+{
+ typedef cProtocol146 super;
+
+public:
+ cProtocol150(cClientHandle * a_Client);
+
+ virtual void SendWindowOpen(char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override;
+} ;
+
+
+
+
|