quakeforge/include/cl_console.h
Bill Currie 5099633bc8 [console] Start work on a debug UI
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.
2023-07-01 20:00:26 +09:00

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