2023-11-12 19:47:38 +00:00
|
|
|
#ifndef __INPUT_H__
|
|
|
|
#define __INPUT_H__
|
|
|
|
|
2024-02-18 03:11:07 +00:00
|
|
|
#include "patch_helpers.h"
|
2023-11-12 19:47:38 +00:00
|
|
|
|
2023-12-01 15:56:20 +00:00
|
|
|
typedef enum {
|
|
|
|
RECOMP_CAMERA_NORMAL,
|
|
|
|
RECOMP_CAMERA_DUALANALOG,
|
|
|
|
} RecompCameraMode;
|
|
|
|
|
|
|
|
extern RecompCameraMode recomp_camera_mode;
|
|
|
|
|
2024-01-23 04:08:59 +00:00
|
|
|
DECLARE_FUNC(void, recomp_get_gyro_deltas, float* x, float* y);
|
2024-03-04 07:13:12 +00:00
|
|
|
DECLARE_FUNC(int, recomp_get_targeting_mode);
|
2023-11-12 19:47:38 +00:00
|
|
|
|
|
|
|
#endif
|