mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-12-03 09:32:54 +00:00
87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
/*
|
|
===========================================================================
|
|
Copyright (C) 1999 - 2005, Id Software, Inc.
|
|
Copyright (C) 2000 - 2013, Raven Software, Inc.
|
|
Copyright (C) 2001 - 2013, Activision, Inc.
|
|
Copyright (C) 2013 - 2015, OpenJK contributors
|
|
|
|
This file is part of the OpenJK source code.
|
|
|
|
OpenJK is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 2 as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
===========================================================================
|
|
*/
|
|
|
|
#include "qcommon/qcommon.h"
|
|
|
|
cvar_t *cl_shownet;
|
|
|
|
void CL_Shutdown( void ) {
|
|
}
|
|
|
|
void CL_Init( void ) {
|
|
cl_shownet = Cvar_Get ("cl_shownet", "0", CVAR_TEMP );
|
|
}
|
|
|
|
void CL_MouseEvent( int dx, int dy, int time ) {
|
|
}
|
|
|
|
void Key_WriteBindings( fileHandle_t f ) {
|
|
}
|
|
|
|
void CL_Frame ( int msec ) {
|
|
}
|
|
|
|
void CL_PacketEvent( netadr_t from, msg_t *msg ) {
|
|
}
|
|
|
|
void CL_CharEvent( int key ) {
|
|
}
|
|
|
|
void CL_Disconnect( qboolean showMainMenu ) {
|
|
}
|
|
|
|
void CL_MapLoading( void ) {
|
|
}
|
|
|
|
qboolean CL_GameCommand( void ) {
|
|
return qfalse;
|
|
}
|
|
|
|
void CL_KeyEvent (int key, qboolean down, unsigned time) {
|
|
}
|
|
|
|
qboolean UI_GameCommand( void ) {
|
|
return qfalse;
|
|
}
|
|
|
|
void CL_ForwardCommandToServer( const char *string ) {
|
|
}
|
|
|
|
void CL_ConsolePrint( const char *txt ) {
|
|
}
|
|
|
|
void CL_JoystickEvent( int axis, int value, int time ) {
|
|
}
|
|
|
|
void CL_InitKeyCommands( void ) {
|
|
}
|
|
|
|
void CL_FlushMemory( void ) {
|
|
}
|
|
|
|
void CL_StartHunkUsers( void ) {
|
|
}
|
|
|
|
qboolean CL_ConnectedToRemoteServer( void ) {
|
|
return qfalse;
|
|
}
|