diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-21 16:45:26 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-21 16:45:26 +0000 |
| commit | faa13fe70371834c3e7e234875d32bb95d278c54 (patch) | |
| tree | 2a1e52d2fde94993a9ea787dadeaec8416912f49 /src/game/client/gc_console.h | |
| parent | a339dcf731278656a57aceec02696b752e85f7b6 (diff) | |
| download | zcatch-faa13fe70371834c3e7e234875d32bb95d278c54.tar.gz zcatch-faa13fe70371834c3e7e234875d32bb95d278c54.zip | |
fixed input problems. made better input in console and chat
Diffstat (limited to 'src/game/client/gc_console.h')
| -rw-r--r-- | src/game/client/gc_console.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/game/client/gc_console.h b/src/game/client/gc_console.h index 0d516820..b75d7646 100644 --- a/src/game/client/gc_console.h +++ b/src/game/client/gc_console.h @@ -1,7 +1,14 @@ #ifndef _GC_CONSOLE_H #define _GC_CONSOLE_H -void console_handle_input(); +#include <engine/e_client_interface.h> + +bool console_input_cli(INPUT_EVENT e, void *user_data); +bool console_input_special_binds(INPUT_EVENT e, void *user_data); +bool console_input_normal_binds(INPUT_EVENT e, void *user_data); + +//void console_handle_input(); + void console_toggle(int tpye); void console_render(); int console_active(); |