diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 08:20:06 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 08:20:06 +0000 |
| commit | 71fa35606c268594f8cf4c52626057f86861c3de (patch) | |
| tree | bbb67479ab1b89a0e18af6cd4dc9c3a3cca5d0ba /src/game/client/gameclient.cpp | |
| parent | b4cef60d62e24d3c0c0451e94adf99254a259a3d (diff) | |
| download | zcatch-71fa35606c268594f8cf4c52626057f86861c3de.tar.gz zcatch-71fa35606c268594f8cf4c52626057f86861c3de.zip | |
fixed emoticons
Diffstat (limited to 'src/game/client/gameclient.cpp')
| -rw-r--r-- | src/game/client/gameclient.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp index 9ae01634..ba7e4b37 100644 --- a/src/game/client/gameclient.cpp +++ b/src/game/client/gameclient.cpp @@ -23,6 +23,7 @@ #include "components/effects.hpp" #include "components/scoreboard.hpp" #include "components/sounds.hpp" +#include "components/emoticon.hpp" GAMECLIENT gameclient; @@ -44,6 +45,7 @@ static CONTROLS controls; static EFFECTS effects; static SCOREBOARD scoreboard; static SOUNDS sounds; +static EMOTICON emoticon; static PLAYERS players; static ITEMS items; @@ -87,6 +89,7 @@ void GAMECLIENT::on_init() all.add(&maplayers_foreground); all.add(&particles->render_general); all.add(&hud); + all.add(&emoticon); all.add(&killmessages); all.add(chat); all.add(&broadcast); @@ -100,6 +103,7 @@ void GAMECLIENT::on_init() input.add(console); input.add(menus); input.add(chat); + input.add(&emoticon); input.add(controls); input.add(binds); |