mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
26 lines
527 B
C
26 lines
527 B
C
#ifndef RHYTHM_H
|
|
#define RHYTHM_H
|
|
|
|
#include "types.h"
|
|
#include "audio.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void Na_RhythmInit();
|
|
extern s8 Na_GetRhythmSubTrack(u32 idx);
|
|
extern void Na_RhythmStart(u32 idx, s8 arg1, s8 arg2);
|
|
extern void Na_RhythmStop(u32 idx);
|
|
extern void Na_RhythmAllStop();
|
|
extern f32 Na_GetRhythmAnimCounter(u32 idx);
|
|
extern s8 Na_GetRhythmDelay(u32 idx);
|
|
extern void Na_GetRhythmInfo(TempoBeat_c* tempo);
|
|
extern void Na_SetRhythmInfo(TempoBeat_c* tempo);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|