mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
16 lines
341 B
C
16 lines
341 B
C
#ifndef CONTROLLER_API
|
|
#define CONTROLLER_API
|
|
|
|
#define DEADZONE 4960
|
|
|
|
// Analog camera movement by Pathétique (github.com/vrmiguel), y0shin and Mors
|
|
// Contribute or communicate bugs at github.com/vrmiguel/sm64-analog-camera
|
|
|
|
#include <ultra64.h>
|
|
|
|
struct ControllerAPI {
|
|
void (*init)(void);
|
|
void (*read)(OSContPad *pad);
|
|
};
|
|
|
|
#endif
|