diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-09-01 16:20:09 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-09-01 16:20:09 -0400 |
commit | 95e2d6975c0fc3579a9fffd8e20399d1dc408d62 (patch) | |
tree | b859a0d34576c607060890775c587503bc6fa010 /include/seal.h | |
parent | 9f78a9adb195635f0e6fd76141cbf51e65114629 (diff) |
Rename routines in pokemon.c
Diffstat (limited to 'include/seal.h')
-rw-r--r-- | include/seal.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/seal.h b/include/seal.h new file mode 100644 index 00000000..9e31e2e4 --- /dev/null +++ b/include/seal.h @@ -0,0 +1,24 @@ +#ifndef POKEDIAMOND_SEAL_H +#define POKEDIAMOND_SEAL_H + +typedef u8 Coords8[3]; +typedef Coords8 CapsuleArray[8]; + +struct SealCase +{ + CapsuleArray coords[12]; + u8 padding_120[0x50]; +}; + +u32 FUN_02029C58(void); +void FUN_02029C60(struct SealCase * sealCase); +void FUN_02029C74(const CapsuleArray * a0, CapsuleArray * a1); +struct SealCase * FUN_02029C80(struct SaveBlock2 * sav2); +CapsuleArray * FUN_02029C8C(struct SealCase * sealCase, s32 idx); +void FUN_02029CA4(struct SealCase * sealCase, const CapsuleArray * src, s32 idx); +Coords8 * FUN_02029CC8(CapsuleArray * a0, s32 a1); +u8 FUN_02029CE0(Coords8 * a0); +u8 FUN_02029CE4(Coords8 * a0); +u8 FUN_02029CE8(Coords8 * a0); + +#endif //POKEDIAMOND_SEAL_H |