diff options
author | yenatch <yenatch@gmail.com> | 2018-02-03 13:35:38 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-02-03 13:35:38 -0500 |
commit | 204d3e45f0c0843ada1243897d36e873059efde1 (patch) | |
tree | b4c3fae28387695175f007357848286afbb0a494 /include/pc_screen_effect.h | |
parent | 3ed97d94be70bee91b581517311c01cf20c917de (diff) | |
parent | f1584e69c307427516d2c180ab92e28bc3786326 (diff) |
Merge remote-tracking branch 'origin/master' into battle-1
Diffstat (limited to 'include/pc_screen_effect.h')
-rw-r--r-- | include/pc_screen_effect.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/pc_screen_effect.h b/include/pc_screen_effect.h new file mode 100644 index 000000000..d3f6d22de --- /dev/null +++ b/include/pc_screen_effect.h @@ -0,0 +1,21 @@ +#ifndef GUARD_PC_SCREEN_EFFECT_H +#define GUARD_PC_SCREEN_EFFECT_H + +struct PCScreenEffectStruct +{ + /*0x00*/ u16 tileTag; + /*0x02*/ u16 paletteTag; + /*0x04*/ u16 unk04; + /*0x06*/ u16 unk06; + /*0x08*/ u16 unk08; + /*0x0A*/ u16 unk0A; + /*0x0C*/ s16 unk0C; + /*0x10*/ u32 selectedPalettes; +}; + +void sub_80C5CD4(struct PCScreenEffectStruct *unkStruct); +bool8 sub_80C5DCC(void); +void sub_80C5E38(struct PCScreenEffectStruct *unkStruct); +bool8 sub_80C5F98(void); + +#endif //GUARD_PC_SCREEN_EFFECT_H |