[input] Move last button declarations

This puts all the client button declarations in the right place (for now:
eventually there will be just the one client input header).
This commit is contained in:
Bill Currie 2021-11-01 12:13:28 +09:00
parent abe77523ae
commit 4406be8de3
3 changed files with 7 additions and 6 deletions

View file

@ -282,7 +282,6 @@ extern qboolean in_mouse_avail;
extern float in_mouse_x, in_mouse_y;
extern in_button_t in_strafe, in_klook, in_speed, in_mlook;
#endif
#endif//__QF_input_h

View file

@ -343,6 +343,7 @@ extern in_button_t in_left, in_right, in_forward, in_back;
extern in_button_t in_lookup, in_lookdown, in_moveleft, in_moveright;
extern in_button_t in_use, in_jump, in_attack;
extern in_button_t in_up, in_down;
extern in_button_t in_strafe, in_klook, in_speed, in_mlook;
extern double realtime;

View file

@ -46,10 +46,11 @@ int CL_ReadFromServer (void);
void CL_WriteToServer (usercmd_t *cmd);
void CL_BaseMove (usercmd_t *cmd);
extern in_button_t in_left, in_right, in_forward, in_back;
extern in_button_t in_lookup, in_lookdown, in_moveleft, in_moveright;
extern in_button_t in_use, in_jump, in_attack;
extern in_button_t in_up, in_down;
extern int in_impulse;
extern in_button_t in_left, in_right, in_forward, in_back;
extern in_button_t in_lookup, in_lookdown, in_moveleft, in_moveright;
extern in_button_t in_use, in_jump, in_attack;
extern in_button_t in_up, in_down;
extern in_button_t in_strafe, in_klook, in_speed, in_mlook;
extern int in_impulse;
#endif