mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 09:21:09 +00:00
[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:
parent
abe77523ae
commit
4406be8de3
3 changed files with 7 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue