summaryrefslogtreecommitdiff
path: root/src/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat.h')
-rw-r--r--src/chat.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/chat.h b/src/chat.h
index db4146d35..661cafc82 100644
--- a/src/chat.h
+++ b/src/chat.h
@@ -20,11 +20,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef CHAT_HEADER
#define CHAT_HEADER
-#include "irrlichttypes.h"
#include <string>
#include <vector>
#include <list>
+#include "irrlichttypes.h"
+#include "util/coloredstring.h"
+
// Chat console related classes
struct ChatLine
@@ -34,7 +36,7 @@ struct ChatLine
// name of sending player, or empty if sent by server
std::wstring name;
// message text
- std::wstring text;
+ ColoredString text;
ChatLine(std::wstring a_name, std::wstring a_text):
age(0.0),