diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-05-15 16:59:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 18:59:55 -0500 |
commit | f402e46cd3c8b7236673d6edbae77903a7cc0618 (patch) | |
tree | 37a19f3ab35a73c29d4d6da565741beaf7bb547f /include/kangaskhan_storage.h | |
parent | f65dee5a143bd543c74c010d7252eb76893ee243 (diff) |
Sese's April/May Dump (#37)
* splitting lots of pokemon square and labeling lots of other things
* actually commit this stuff
* more moving data and things
* more screen work
* split out some pokemon dungeon data
* lots of data work
* push more data work
* split kecleon, decomp another kanghaskhan func, and try to doc UpdateBGControl more
* lots of item work
* label more item things
* subtype -> category and doc types/category
Diffstat (limited to 'include/kangaskhan_storage.h')
-rw-r--r-- | include/kangaskhan_storage.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/include/kangaskhan_storage.h b/include/kangaskhan_storage.h new file mode 100644 index 0000000..0d7ac52 --- /dev/null +++ b/include/kangaskhan_storage.h @@ -0,0 +1,41 @@ +#ifndef KANGASKHAN_STORAGE_H +#define KANGASKHAN_STORAGE_H + +struct unkData +{ + u8 unk0[20]; + u8 *array; +}; + +struct unkStruct_203B208 +{ + // size: 0x14C + u32 unk0; + u32 currState; + u32 unk8; + u32 unkC; + u32 unk10; + u32 unk14; + u32 unk18; + u32 unk1C; + u32 unk20; + u8 fill24[0x58 - 0x24]; + u32 unk58; + u8 unk5C[0xA8 - 0x5C]; + u32 unkA8; + u8 unkAC[0xBC - 0xAC]; + u32 unkBC; + u8 unkC0[0xD8 - 0xC0]; + struct OpenedFile *faceFile; + u8 *faceData; + u16 unkE0; + u16 unkE2; + u8 unkE4; + u8 unkE5; + u8 unkE6; + u8 unkE7; + struct OpenedFile **unkE8; + struct unkData unkEC[4]; +}; + +#endif |