mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-12 23:54:33 +00:00
29 lines
263 B
C
29 lines
263 B
C
// in_null.c -- for systems without a mouse
|
|
|
|
#include "quakedef.h"
|
|
|
|
void IN_Init (void)
|
|
{
|
|
}
|
|
|
|
void IN_Shutdown (void)
|
|
{
|
|
}
|
|
|
|
void IN_Commands (void)
|
|
{
|
|
}
|
|
|
|
void IN_Move (usercmd_t *cmd)
|
|
{
|
|
}
|
|
|
|
/*
|
|
===========
|
|
IN_ModeChanged
|
|
===========
|
|
*/
|
|
void IN_ModeChanged (void)
|
|
{
|
|
}
|
|
|