summaryrefslogtreecommitdiff
path: root/src/chat-server/chatclient.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat-server/chatclient.hpp')
-rw-r--r--src/chat-server/chatclient.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/chat-server/chatclient.hpp b/src/chat-server/chatclient.hpp
index c9578a50..40622afe 100644
--- a/src/chat-server/chatclient.hpp
+++ b/src/chat-server/chatclient.hpp
@@ -24,8 +24,14 @@
#ifndef _TMWSERV_CHATCLIENT_H_
#define _TMWSERV_CHATCLIENT_H_
+#include <string>
+#include <vector>
+
+#include "defines.h"
#include "net/netcomputer.hpp"
+class ChatChannel;
+
/**
* A client connected to the chat server. Via this class, the chat server
* keeps track of the character name and account level of a client.
@@ -43,6 +49,7 @@ class ChatClient : public NetComputer
}
std::string characterName;
+ std::vector< ChatChannel * > channels;
AccountLevel accountLevel;
};