diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-09-12 22:08:23 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-09-18 17:41:06 +0200 |
commit | 7f372b12cb01f7df9d5466de11b36494353613a8 (patch) | |
tree | cdc570e1e5318beba83cc3b165efa0704b2c0edb /src/Protocol/Protocol.h | |
parent | Remove unused ServerPort member (diff) | |
download | cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar.gz cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar.bz2 cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar.lz cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar.xz cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.tar.zst cuberite-7f372b12cb01f7df9d5466de11b36494353613a8.zip |
Diffstat (limited to 'src/Protocol/Protocol.h')
-rw-r--r-- | src/Protocol/Protocol.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index 222e6031e..9d3cd77f2 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -345,6 +345,14 @@ public: v1_14 = 477 }; + enum State + { + Status = 1, + Login = 2, + Game = 3, + Invalid = 255 + }; + /** Called when client sends some data */ virtual void DataReceived(cByteBuffer & a_Buffer, const char * a_Data, size_t a_Size) = 0; |