summaryrefslogtreecommitdiff
path: root/src/net/chathandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-19 11:05:44 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-19 11:05:44 +0300
commit78d916e95061fb3bec4ba7791a2f20bcbeaecb3c (patch)
tree43b9335fcc92e21796f8861edefad94471de5fb6 /src/net/chathandler.h
parent1e0a3842186c86e40eff6fa7894e578ae948d179 (diff)
downloadplus-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.gz
plus-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.bz2
plus-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.tar.xz
plus-78d916e95061fb3bec4ba7791a2f20bcbeaecb3c.zip
eathena: add packet CMSG_CHAT_JOIN 0x00d9.
Diffstat (limited to 'src/net/chathandler.h')
-rw-r--r--src/net/chathandler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/chathandler.h b/src/net/chathandler.h
index bf4863b66..ede516f06 100644
--- a/src/net/chathandler.h
+++ b/src/net/chathandler.h
@@ -23,11 +23,14 @@
#ifndef NET_CHATHANDLER_H
#define NET_CHATHANDLER_H
+
#include <iosfwd>
#include <string>
#include "localconsts.h"
+struct ChatObject;
+
namespace Net
{
class ChatHandler notfinal
@@ -72,6 +75,9 @@ class ChatHandler notfinal
const bool isPublic) = 0;
virtual void battleTalk(const std::string &text) const = 0;
+
+ virtual void joinChat(const ChatObject *const chat,
+ const std::string &password) const = 0;
};
} // namespace Net