blob: 0d51682087054b6105f741c6c4775844c25cc99c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _GC_CONSOLE_H
#define _GC_CONSOLE_H
void console_handle_input();
void console_toggle(int tpye);
void console_render();
int console_active();
void client_console_init();
void console_rcon_print(const char *line);
#endif
|