diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-01-07 22:25:16 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-01-07 22:25:16 -0500 |
commit | 02fea36a2e43523c9e9401897ac2fdbeb37ed3d4 (patch) | |
tree | 61f83715915bc870f6e737bdf07959d960b86372 /include/pc_screen_effect.h | |
parent | ceebbe19918520c65ed9bdcd79d4ae5fbb669d88 (diff) |
through sub_8096C68
Diffstat (limited to 'include/pc_screen_effect.h')
-rw-r--r-- | include/pc_screen_effect.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/pc_screen_effect.h b/include/pc_screen_effect.h new file mode 100644 index 000000000..a791fc66f --- /dev/null +++ b/include/pc_screen_effect.h @@ -0,0 +1,19 @@ +#ifndef POKERUBY_PC_SCREEN_EFFECT_H +#define POKERUBY_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); + +#endif //POKERUBY_PC_SCREEN_EFFECT_H |