diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-30 23:37:27 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-30 23:37:27 -0500 |
commit | 51ade392bf16ae4c87a18f8965b8e650fe983d03 (patch) | |
tree | abca9b93197138cc4e375c0b7ed4412d52007c0c /include/pc_screen_effect.h | |
parent | f5b348f8d0b2587145c1d17e2b35fb2c49a3fb93 (diff) | |
parent | 2bd2dd1db7252a928a84cd65ea0510ed1533fa9b (diff) |
Merge branch 'master' of https://github.com/pret/pokeruby
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 |