Files
ac-decomp/include/jaudio_NES/rhythm.h
T
2024-03-05 00:34:10 -05:00

23 lines
381 B
C

#ifndef RHYTHM_H
#define RHYTHM_H
#include "types.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 f32 Na_GetRhythmInfo(u32);
extern void Na_SetRhythmInfo(f32);
#ifdef __cplusplus
}
#endif
#endif