mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
5099633bc8
It does almost nothing (just puts a non-function button on the screen), but it will help develop the IMUI code and, of course, come to help with debugging in general.
13 lines
291 B
C
13 lines
291 B
C
#ifndef __cl_console_h
|
|
#define __cl_console_h
|
|
|
|
extern struct console_data_s con_data;
|
|
extern bool con_debug;
|
|
|
|
void Con_Debug_Init (void);
|
|
void Con_Debug_InitCvars (void);
|
|
void Con_Debug_Shutdown (void);
|
|
void Con_Debug_Draw (void);
|
|
void Con_Show_Mouse (bool visible);
|
|
|
|
#endif//__cl_console_h
|