2008-01-16 22:14:06 +00:00
|
|
|
#ifndef _GC_CONSOLE_H
|
|
|
|
#define _GC_CONSOLE_H
|
|
|
|
|
2008-03-21 16:45:26 +00:00
|
|
|
#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();
|
|
|
|
|
2008-03-23 13:51:11 +00:00
|
|
|
void console_clear(int type);
|
2008-03-01 14:36:36 +00:00
|
|
|
void console_toggle(int tpye);
|
2008-01-16 22:14:06 +00:00
|
|
|
void console_render();
|
|
|
|
int console_active();
|
|
|
|
void client_console_init();
|
2008-03-01 14:36:36 +00:00
|
|
|
void console_rcon_print(const char *line);
|
2008-01-16 22:14:06 +00:00
|
|
|
|
|
|
|
#endif
|