diff options
author | red031000 <rubenru09@aol.com> | 2020-06-15 17:28:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 17:28:12 +0100 |
commit | b96fe608981c7693210f8711b64b1573edae71dc (patch) | |
tree | cf0867f106ad8ba71e4149348a0fff591e26634b /include/seals.h | |
parent | 08a00d98647a8b902b81ab4c2e41845cf919bf47 (diff) | |
parent | 7546bb0c8f5b26759b68417dc5a7e3cc9318ebc2 (diff) |
Merge pull request #162 from PikalaxALT/pikalax_work
Decompile pokemon.s
Diffstat (limited to 'include/seals.h')
-rw-r--r-- | include/seals.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/seals.h b/include/seals.h new file mode 100644 index 00000000..8fda23b9 --- /dev/null +++ b/include/seals.h @@ -0,0 +1,15 @@ +#ifndef POKEDIAMOND_SEALS_H +#define POKEDIAMOND_SEALS_H + +struct SealStruct +{ + // TODO: define + u8 filler_00[0x38]; +}; + +struct SealStruct * CreateNewSealsObject(u32 heap_id); + +void CopySealsObject(const struct SealStruct *, struct SealStruct *); +void FUN_02029C74(const u8 *, u8 *); + +#endif //POKEDIAMOND_SEALS_H |