mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
24 lines
324 B
C
24 lines
324 B
C
#ifndef PAD_H
|
|
#define PAD_H
|
|
|
|
#include "types.h"
|
|
#include "libultra/osContPad.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* sizeof(pad_t) == 0x18 */
|
|
typedef struct {
|
|
/* 0x00 */ OSContPad now;
|
|
/* 0x06 */ OSContPad last;
|
|
/* 0x0C */ OSContPad on;
|
|
/* 0x12 */ OSContPad off;
|
|
} pad_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|