mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-25 07:02:50 -04:00
19 lines
247 B
C
19 lines
247 B
C
#ifndef MELODY_H
|
|
#define MELODY_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void Na_Inst(u16, u8*);
|
|
extern void Na_FurnitureInst(u32, u8, u8*, u16, f32);
|
|
extern int Na_InstCountGet();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|