mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2025-02-17 12:48:41 +00:00
15 lines
303 B
C
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
|