blob: a780d3bc9bb8112a2f5c8ce677849f7545aa9eb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* PARSEC HEADER: inp_glob.h
*/
#ifndef _INP_GLOB_H_
#define _INP_GLOB_H_
// ----------------------------------------------------------------------------
// INPUT SUBSYSTEM (INP) related global declarations and definitions -
// ----------------------------------------------------------------------------
// current joystick sensitivity (timing)
extern float joy_yaw_corr_refframe;
extern float joy_pitch_corr_refframe;
extern float joy_roll_corr_refframe;
extern float joy_acc_corr_refframe;
extern int inp_mouse_invert_yaxis;
extern int inp_mouse_sensitivity;
extern int inp_mouse_drift;
#endif // _INP_GLOB_H_
|