diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-11-02 07:59:29 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-11-02 07:59:29 -0400 |
commit | ab3b8cd51a88f02dbdb72c276a1c35591e8331f4 (patch) | |
tree | 29d5e0c8c1aa2ddd211b65c0160af98044d76678 /include/bard_music.h | |
parent | 6543d7f2d6e7e12e159588f494895ba02b7d5090 (diff) | |
parent | af197ccd3bd62fab813154dc4311e65f9992a676 (diff) |
Merge branch 'master' into heal_location
Diffstat (limited to 'include/bard_music.h')
-rw-r--r-- | include/bard_music.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/include/bard_music.h b/include/bard_music.h new file mode 100644 index 000000000..7d9ca633e --- /dev/null +++ b/include/bard_music.h @@ -0,0 +1,43 @@ +#ifndef GUARD_BARD_MUSIC_H +#define GUARD_BARD_MUSIC_H + +// Exported type declarations + + +struct BardSound +{ + /*0x00*/ u8 var00; + /*0x01*/ s8 var01; + /*0x02*/ u16 var02; + /*0x04*/ u16 volume; + /*0x06*/ u16 var06; +}; + +struct BardPhoneme +{ + /*0x00*/ u16 length; + /*0x02*/ u16 pitch; +}; + +struct BardSong +{ + /*0x00*/ u8 currWord; + /*0x01*/ u8 currPhoneme; + /*0x02*/ u8 phonemeTimer; + /*0x03*/ u8 state; + /*0x04*/ s16 length; + /*0x06*/ u16 volume; + /*0x08*/ s16 pitch; + /*0x0A*/ s16 voiceInflection; + /*0x0C*/ u16 lyrics[6]; + /*0x18*/ struct BardPhoneme phonemes[6]; + /*0x30*/ const struct BardSound *sound; +}; + +// Exported RAM declarations + +// Exported ROM declarations + +extern const u16 gUnknown_085F5490; + +#endif //GUARD_BARD_MUSIC_H |