mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
21 lines
592 B
C
21 lines
592 B
C
#ifndef __INPUT_H__
|
|
#define __INPUT_H__
|
|
|
|
#include "patch_helpers.h"
|
|
|
|
typedef enum {
|
|
RECOMP_CAMERA_NORMAL,
|
|
RECOMP_CAMERA_DUALANALOG,
|
|
} RecompCameraMode;
|
|
|
|
extern RecompCameraMode recomp_camera_mode;
|
|
|
|
DECLARE_FUNC(void, recomp_get_gyro_deltas, float* x, float* y);
|
|
// TODO move these
|
|
DECLARE_FUNC(void, recomp_puts, const char* data, u32 size);
|
|
DECLARE_FUNC(void, recomp_exit);
|
|
DECLARE_FUNC(void, recomp_handle_quicksave_actions, OSMesgQueue* enter_mq, OSMesgQueue* exit_mq);
|
|
DECLARE_FUNC(void, recomp_handle_quicksave_actions_main, OSMesgQueue* enter_mq, OSMesgQueue* exit_mq);
|
|
|
|
#endif
|