mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
11 lines
178 B
C
11 lines
178 B
C
|
#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
|