mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-14 17:01:02 +00:00
13 lines
No EOL
406 B
C
13 lines
No EOL
406 B
C
// client_ui.h -- header for client access to ui funcs
|
|
#ifndef __CLIENTUI_H__
|
|
#define __CLIENTUI_H__
|
|
|
|
#include "../ui/ui_public.h"
|
|
|
|
void _UI_KeyEvent( int key, qboolean down );
|
|
void UI_SetActiveMenu( const char* menuname,const char *menuID );
|
|
void UI_UpdateConnectionMessageString( char *string );
|
|
qboolean UI_ConsoleCommand( void ) ;
|
|
qboolean _UI_IsFullscreen( void );
|
|
|
|
#endif //__CLIENTUI_H__
|