mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
27 lines
450 B
C
27 lines
450 B
C
#ifndef AUDIO_H
|
|
#define AUDIO_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* sizeof(TempoBeat_c) == 2 */
|
|
typedef struct audio_tempo_beat_s {
|
|
/* 0x00 */ u8 tempo;
|
|
/* 0x01 */ s8 beat;
|
|
} TempoBeat_c;
|
|
|
|
extern void sAdo_GameFrame();
|
|
extern void sAdo_SoftReset();
|
|
|
|
/* Not sure about the last param name */
|
|
extern void sAdo_VoiceSe(u8 num, u8 num2, u8 num3, s16 character_idx, u8 scale, u8 mode);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|