mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
15 lines
579 B
C
15 lines
579 B
C
#ifndef POKEPLATINUM_FRSCRCMD_SOUND_H
|
|
#define POKEPLATINUM_FRSCRCMD_SOUND_H
|
|
|
|
#include "overlay104/defs.h"
|
|
|
|
BOOL FrontierScrCmd_PlaySoundEffect(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_StopSoundEffect(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_WaitSoundEffect(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_PlayFanfare(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_WaitFanfare(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_PlayBGM(FrontierScriptContext *ctx);
|
|
BOOL FrontierScrCmd_StopBGM(FrontierScriptContext *ctx);
|
|
|
|
#endif // POKEPLATINUM_FRSCRCMD_SOUND_H
|