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