mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			389 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);
 | 
						|
DECLARE_FUNC(void, recomp_get_mouse_deltas, float* x, float* y);
 | 
						|
DECLARE_FUNC(int, recomp_get_targeting_mode);
 | 
						|
 | 
						|
#endif
 |