Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-23 17:10:35 +0000
committerStijn Buys <ingar@osirion.org>2008-02-23 17:10:35 +0000
commit5c734fe66e9ace93c03937adc2fc56336fb474fb (patch)
treed4d4ffebd4215b0f1f42d6a4ac9275ec8cd686ea /src/client/client.cc
parent82c06412ef39522c4deab457ce7a3e78160d8a19 (diff)
client chatbox and message notifications
Diffstat (limited to 'src/client/client.cc')
-rw-r--r--src/client/client.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index f232c12..33b3a04 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -4,7 +4,7 @@
the terms and conditions of the GNU General Public License version 2
*/
-// project headers
+#include "client/chat.h"
#include "client/client.h"
#include "client/video.h"
#include "client/camera.h"
@@ -102,6 +102,7 @@ void Client::init()
// initialize console
console::init();
+ chat::init();
// initialize input
input::init();
@@ -148,6 +149,8 @@ void Client::shutdown()
// remove engine functions
core::Func::remove("r_restart");
+ chat::shutdown();
+
console::shutdown();
console::flush();