2024-01-05 18:00:59 -05:00

15 lines
303 B
C

#ifndef PADUTILS_H
#define PADUTILS_H
#include "PR/controller.h"
typedef struct Input {
/* 0x00 */ OSContPad cur;
/* 0x06 */ OSContPad prev;
/* 0x0C */ OSContPad press; // X/Y store delta from last frame
/* 0x12 */ OSContPad rel; // X/Y store adjusted
} Input; // size = 0x18
#endif