about summary refs log tree commit diff
path: root/src/game/client/gameclient.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-08-27 19:50:33 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-08-27 19:50:33 +0000
commitae364d4d295f93b42ccdbd5f9e91bd26227cf9f1 (patch)
treed24974806ee0e9e9a9542a119bc932296773a0ea /src/game/client/gameclient.cpp
parent8f23204eef956177855ee8fb9c1cc21cd08560f4 (diff)
downloadzcatch-ae364d4d295f93b42ccdbd5f9e91bd26227cf9f1.tar.gz
zcatch-ae364d4d295f93b42ccdbd5f9e91bd26227cf9f1.zip
scoreboard fixed
Diffstat (limited to 'src/game/client/gameclient.cpp')
-rw-r--r--src/game/client/gameclient.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp
index 0222b6b9..40682297 100644
--- a/src/game/client/gameclient.cpp
+++ b/src/game/client/gameclient.cpp
@@ -21,6 +21,7 @@
 #include "components/debughud.hpp"
 #include "components/controls.hpp"
 #include "components/effects.hpp"
+#include "components/scoreboard.hpp"
 
 GAMECLIENT gameclient;
 
@@ -40,6 +41,7 @@ static HUD hud;
 static DEBUGHUD debughud;
 static CONTROLS controls;
 static EFFECTS effects;
+static SCOREBOARD scoreboard;
 
 static PLAYERS players;
 static ITEMS items;
@@ -85,6 +87,7 @@ void GAMECLIENT::on_init()
 	all.add(chat);
 	all.add(&broadcast);
 	all.add(&debughud);
+	all.add(&scoreboard);
 	all.add(&motd);
 	all.add(menus);
 	all.add(console);