mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 20:18:19 +00:00
20 lines
490 B
C
20 lines
490 B
C
#ifndef _GC_CONSOLE_H
|
|
#define _GC_CONSOLE_H
|
|
|
|
#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_clear(int type);
|
|
void console_toggle(int tpye);
|
|
void console_render();
|
|
int console_active();
|
|
void client_console_init();
|
|
void console_rcon_print(const char *line);
|
|
|
|
#endif
|