mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
27 lines
518 B
C
27 lines
518 B
C
/****************************************************************************
|
|
* libwiigui Template
|
|
* Tantric 2009
|
|
*
|
|
* input.h
|
|
* Wii/GameCube controller management
|
|
***************************************************************************/
|
|
|
|
#ifndef _INPUT_H_
|
|
#define _INPUT_H_
|
|
|
|
#include <gccore.h>
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#define PI 3.14159265f
|
|
#define PADCAL 50
|
|
|
|
extern int rumbleRequest[4];
|
|
|
|
void SetupPads();
|
|
void UpdatePads();
|
|
void ShutoffRumble();
|
|
void ShutdownPads();
|
|
void DoRumble(int i);
|
|
|
|
#endif
|