mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
273 B
C
19 lines
273 B
C
#ifndef EMUSOUND_H
|
|
#define EMUSOUND_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void EmuSound_Start(u8* noise_data);
|
|
extern void EmuSound_Exit();
|
|
extern void Sound_Write(u16 event, u8 value, u16 maybe_frames);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|