diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-25 23:46:18 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-25 23:46:18 +0200 |
commit | 7157ebc061b496d84c685070107045e8440a6ef0 (patch) | |
tree | 46ae305d432f61b0fef5363b49ea534bcafdab10 /source/cClientHandle.h | |
parent | Removed cPackets from cChunk. (diff) | |
download | cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar.gz cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar.bz2 cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar.lz cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar.xz cuberite-7157ebc061b496d84c685070107045e8440a6ef0.tar.zst cuberite-7157ebc061b496d84c685070107045e8440a6ef0.zip |
Diffstat (limited to 'source/cClientHandle.h')
-rw-r--r-- | source/cClientHandle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/cClientHandle.h b/source/cClientHandle.h index 9c8586ae5..f270c9aa3 100644 --- a/source/cClientHandle.h +++ b/source/cClientHandle.h @@ -11,6 +11,7 @@ #ifndef CCLIENTHANDLE_H_INCLUDED #define CCLIENTHANDLE_H_INCLUDED +#include "defines.h" #include "packets/cPacket.h" #include "Vector3d.h" #include "cSocketThreads.h" @@ -117,6 +118,9 @@ public: void SendBlockChange(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); void SendBlockChanges(int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes); void SendUnloadChunk(int a_ChunkX, int a_ChunkZ); + void SendWeather(eWeather a_Weather); + void SendTimeUpdate(Int64 a_WorldTime); + void SendThunderbolt(int a_BlockX, int a_BlockY, int a_BlockZ); const AString & GetUsername(void) const; //tolua_export |