diff options
author | 12xx12 <44411062+12xx12@users.noreply.github.com> | 2021-03-05 16:08:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 16:08:30 +0100 |
commit | 8405b8969f205ffae219361dfc03f3b4c680ce73 (patch) | |
tree | cc1aef4347d9e399b80a32afa16b657885fd3603 /src/ClientHandle.h | |
parent | Add Mushrooms to Generator and fixed up the roofed forest (#5134) (diff) | |
download | cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.gz cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.bz2 cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.lz cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.xz cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.zst cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.zip |
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r-- | src/ClientHandle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index f3e0e7f25..2e1e09a06 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -144,6 +144,12 @@ public: // tolua_export void SendBlockBreakAnim (UInt32 a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage); void SendBlockChange (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); // tolua_export void SendBlockChanges (int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes); + void SendBossBarAdd (UInt32 a_UniqueID, const cCompositeChat & a_Title, float a_FractionFilled, BossBarColor a_Color, BossBarDivisionType a_DivisionType, bool a_DarkenSky, bool a_PlayEndMusic, bool a_CreateFog); // tolua_export + void SendBossBarUpdateFlags (UInt32 a_UniqueID, bool a_DarkenSky, bool a_PlayEndMusic, bool a_CreateFog); // tolua_export + void SendBossBarUpdateStyle (UInt32 a_UniqueID, BossBarColor a_Color, BossBarDivisionType a_DivisionType); // tolua_export + void SendBossBarUpdateTitle (UInt32 a_UniqueID, const cCompositeChat & a_Title); // tolua_export + void SendBossBarRemove (UInt32 a_UniqueID); // tolua_export + void SendBossBarUpdateHealth (UInt32 a_UniqueID, float a_FractionFilled); // tolua_export void SendCameraSetTo (const cEntity & a_Entity); void SendChat (const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData = ""); void SendChat (const cCompositeChat & a_Message); |