diff options
author | Mattes D <github@xoft.cz> | 2015-06-03 09:49:28 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-06-03 09:49:28 +0200 |
commit | 1f2c9b226ca9287237d4489e08419076f4a87620 (patch) | |
tree | f5e5b669b0f8c3fe98b39133c5772df2db6ad5c0 /src/Protocol/ProtocolRecognizer.h | |
parent | Merge pull request #2190 from mc-server/CrashDumpArgs (diff) | |
parent | Added system and above action bar chat messages (diff) | |
download | cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.gz cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.bz2 cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.lz cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.xz cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.zst cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.zip |
Diffstat (limited to 'src/Protocol/ProtocolRecognizer.h')
-rw-r--r-- | src/Protocol/ProtocolRecognizer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Protocol/ProtocolRecognizer.h b/src/Protocol/ProtocolRecognizer.h index 956b5dcc0..29eddcbc9 100644 --- a/src/Protocol/ProtocolRecognizer.h +++ b/src/Protocol/ProtocolRecognizer.h @@ -55,6 +55,12 @@ public: virtual void SendBlockChanges (int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes) override; virtual void SendChat (const AString & a_Message) override; virtual void SendChat (const cCompositeChat & a_Message) override; + virtual void SendChatAboveActionBar (const AString & a_Message) override; + virtual void SendChatAboveActionBar (const cCompositeChat & a_Message) override; + virtual void SendChatSystem (const AString & a_Message) override; + virtual void SendChatSystem (const cCompositeChat & a_Message) override; + virtual void SendChatType (const AString & a_Message, eChatType type) override; + virtual void SendChatType (const cCompositeChat & a_Message, eChatType type) override; virtual void SendChunkData (int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer) override; virtual void SendCollectEntity (const cEntity & a_Entity, const cPlayer & a_Player) override; virtual void SendDestroyEntity (const cEntity & a_Entity) override; |