blob: 87628a2ae0eaf7552a723fe57ec4f1a35da6c1dd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _GC_CONSOLE_H
#define _GC_CONSOLE_H
void console_handle_input();
void console_toggle();
void console_render();
int console_active();
void client_console_init();
#endif
|