diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-09-16 14:00:48 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-09-16 14:00:48 -0500 |
commit | 190c3562b9df62ab57297c46348f3739563c9868 (patch) | |
tree | 735a8a62d07f64809fe90e38b35f545fa499204d /include/input.h | |
parent | 5cdd4a723668c8abd46205f74a51a8a82e72f35c (diff) |
decomp a chunk of input
Diffstat (limited to 'include/input.h')
-rw-r--r-- | include/input.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/input.h b/include/input.h new file mode 100644 index 0000000..1ac1bec --- /dev/null +++ b/include/input.h @@ -0,0 +1,44 @@ +struct test +{ + /* 0x0 */ u16 unk0; + /* 0x2 */ u16 unk1; + /* 0x4 */ u16 unk2; + /* 0x6 */ u16 unk3; + /* 0x8 */ u16 unk4; +}; + +struct test3 +{ + /* 0x0 */ u16 unk0; + /* 0x2 */ u16 unk1; + /* 0x4 */ u16 unk2; + /* 0x6 */ u16 unk3; +}; + +struct Input +{ + /* 0x0 */ u16 unk0; + /* 0x2 */ u16 unk1; + /* 0x4 */ u16 unk2; + /* 0x6 */ u16 unk3; + /* 0x8 */ u16 unk4; + /* 0xA */ u16 unk5; + /* 0xC */ u16 unk6; + /* 0xE */ u16 unk7; + /* 0x10 */ u16 unk8; + /* 0x12 */ u16 unk9; + /* 0x14 */ u16 unk10; + /* 0x16 */ u16 unk11; + /* 0x18 */ u16 unk12; + /* 0x1A */ u16 unk13; + /* 0x1C */ u16 unk14; + /* 0x1E */ u16 unk15; + /* 0x20 */ u16 unk16; + /* 0x22 */ u16 unk17[3]; // padding + /* 0x28 */ u8 unk18; + /* 0x29 */ u8 unk19; + /* 0x2A */ u8 unk20; +}; + +void InitInput(void); +void sub_800485C(void); |