diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-10-01 21:50:58 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-10-01 21:50:58 -0400 |
commit | 993d5e2a6afb8f765ddd98ac32f01253a1476696 (patch) | |
tree | 4d8a9de72ea169f8185a59fec36285e5f69e1661 /include | |
parent | 5a51a49642e81575ebe41a00ec69a3abb489376b (diff) |
clean up declarations in src/palette.c
Diffstat (limited to 'include')
-rw-r--r-- | include/battle.h | 3 | ||||
-rw-r--r-- | include/blend_palette.h | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/include/battle.h b/include/battle.h index 67d3d873d..bc70b86ea 100644 --- a/include/battle.h +++ b/include/battle.h @@ -927,6 +927,9 @@ u8 GetBankSide(u8 bank); u8 GetBankIdentity(u8 bank); u8 GetBankByIdentity(u8 bank); +// battle_transition +void sub_8149DFC(u8 a1); + // Move this somewhere else #include "sprite.h" diff --git a/include/blend_palette.h b/include/blend_palette.h new file mode 100644 index 000000000..1db3f4eb0 --- /dev/null +++ b/include/blend_palette.h @@ -0,0 +1,12 @@ +#ifndef GUARD_BLEND_PALETTE_H +#define GUARD_BLEND_PALETTE_H + +// Exported type declarations + +// Exported RAM declarations + +// Exported ROM declarations + +void BlendPalette(u16, u16, u8, u16); + +#endif //GUARD_BLEND_PALETTE_H |