This commit is contained in:
Literally A Penguin
2024-09-25 15:39:25 -05:00
committed by GitHub
parent e8bd66b89c
commit 0bf99969fd
86 changed files with 51093 additions and 0 deletions

36
null/in_null.c Normal file
View File

@@ -0,0 +1,36 @@
// in_null.c -- for systems without a mouse
#include "../client/client.h"
void IN_Init (void)
{
}
void IN_Shutdown (void)
{
}
void IN_Commands (void)
{
}
void IN_Frame (void)
{
}
void IN_Move (usercmd_t *cmd)
{
}
void IN_Activate (qboolean active)
{
}
void IN_ActivateMouse (void)
{
}
void IN_DeactivateMouse (void)
{
}