Quake-2

Quake 2 GPL Source Release
Log | Files | Refs

in_null.c (330B)


      1 // in_null.c -- for systems without a mouse
      2 
      3 #include "../client/client.h"
      4 
      5 void IN_Init (void)
      6 {
      7 }
      8 
      9 void IN_Shutdown (void)
     10 {
     11 }
     12 
     13 void IN_Commands (void)
     14 {
     15 }
     16 
     17 void IN_Frame (void)
     18 {
     19 }
     20 
     21 void IN_Move (usercmd_t *cmd)
     22 {
     23 }
     24 
     25 void IN_Activate (qboolean active)
     26 {
     27 }
     28 
     29 void IN_ActivateMouse (void)
     30 {
     31 }
     32 
     33 void IN_DeactivateMouse (void)
     34 {
     35 }
     36