Files
mm/include/libu64/pad.h
T
Dragorn421 fcc5cf828d libu64 (#1705)
* libu64

* libu64 -O2

* Add libu64.md
2024-11-07 17:27:19 -08:00

18 lines
347 B
C

#ifndef LIBU64_PAD_H
#define LIBU64_PAD_H
#include "PR/os_cont.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
void PadUtils_UpdateRelXY(Input* input);
#endif