mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-06 19:11:24 -04:00
18 lines
360 B
C
18 lines
360 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);
|
|
|
|
#endif |