mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
19 lines
555 B
C
19 lines
555 B
C
#ifndef GUARD_M4A_H
|
|
#define GUARD_M4A_H
|
|
|
|
#include "gba/m4a_internal.h"
|
|
|
|
void m4aSoundVSync(void);
|
|
|
|
void m4aSoundInit(void);
|
|
void m4aSoundMain(void);
|
|
void m4aSongNumStart(u16);
|
|
void m4aSongNumStop(u16 n);
|
|
void m4aMPlayContinue(struct MusicPlayerInfo *mplayInfo);
|
|
void m4aMPlayFadeOut(struct MusicPlayerInfo *mplayInfo, u16 speed);
|
|
void m4aMPlayFadeOutTemporarily(struct MusicPlayerInfo *mplayInfo, u16 speed);
|
|
void m4aMPlayFadeIn(struct MusicPlayerInfo *mplayInfo, u16 speed);
|
|
void m4aMPlayImmInit(struct MusicPlayerInfo *mplayInfo);
|
|
|
|
#endif //GUARD_M4A_H
|