diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 14:01:36 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 14:01:36 +0000 |
| commit | 7b68ff42773976cafe39b59dc026350cda5c05fd (patch) | |
| tree | a64ff77b56d62f3860e82513df4874436c353621 /src/game/client/gameclient.hpp | |
| parent | 0160f2651448c2c2df332d2447629e23d5bd4a9a (diff) | |
| download | zcatch-7b68ff42773976cafe39b59dc026350cda5c05fd.tar.gz zcatch-7b68ff42773976cafe39b59dc026350cda5c05fd.zip | |
fixed chaining of console commands, allows snatching updates of console variables. cleaned up some code
Diffstat (limited to 'src/game/client/gameclient.hpp')
| -rw-r--r-- | src/game/client/gameclient.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/client/gameclient.hpp b/src/game/client/gameclient.hpp index 35b95f27..e354430d 100644 --- a/src/game/client/gameclient.hpp +++ b/src/game/client/gameclient.hpp @@ -1,5 +1,6 @@ #include <base/vmath.hpp> +#include <engine/e_console.h> #include <game/gamecore.hpp> #include "render.hpp" @@ -34,6 +35,8 @@ class GAMECLIENT static void con_team(void *result, void *user_data); static void con_kill(void *result, void *user_data); + static void conchain_special_infoupdate(void *result, void *user_data, CONSOLE_CALLBACK cb, void *cbuser); + public: bool suppress_events; bool new_tick; |