Files
ac-decomp/include/jaudio_NES/rhythm.h
T
2024-02-28 12:57:28 -08:00

22 lines
390 B
C

#ifndef RHYTHM_H
#define RHYTHM_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void Na_RhythmStart(void*, u8,u8);
extern void Na_RhythmStop(void*);
extern void Na_RhythmAllStop();
extern f32 Na_GetRhythmAnimCounter(void*);
extern f32 Na_GetRhythmDelay(void*);
extern f32 Na_GetRhythmInfo(void*);
extern void Na_SetRhythmInfo(f32);
#ifdef __cplusplus
}
#endif
#endif