X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=input.h;h=30f76ef56fe80ae01fb03aa15bfc1137b7d38909;hb=9eed14a34e6f2a05afa0f57d9490837cf20df9ec;hp=a44a5eec615afe0ac3ea112922f5d4d82c78c6ef;hpb=284dd7a5e650c0edea896734f0179a3fde95defc;p=xonotic%2Fdarkplaces.git diff --git a/input.h b/input.h index a44a5eec..30f76ef5 100644 --- a/input.h +++ b/input.h @@ -19,13 +19,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // input.h -- external (non-keyboard) input devices +#ifndef INPUT_H +#define INPUT_H + extern cvar_t in_pitch_min; extern cvar_t in_pitch_max; -void IN_Init (void); - -void IN_Shutdown (void); - void IN_Commands (void); // oportunity for devices to stick commands on the script buffer @@ -40,3 +39,5 @@ void IN_Mouse(usercmd_t *cmd, float mx, float my); void IN_ClearStates (void); // restores all button and position states to defaults +#endif +