mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
20 lines
284 B
C
20 lines
284 B
C
#ifndef STAFF_H
|
|
#define STAFF_H
|
|
|
|
#include "types.h"
|
|
#include "audio.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void Na_StaffRollInit(void);
|
|
extern void Na_StaffRollStart(s16 seq_no);
|
|
extern void Na_GetStaffRollInfo(StaffRollInfo_c* info);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|