mirror of https://github.com/PrimeDecomp/prime.git
21 lines
296 B
C
21 lines
296 B
C
|
#ifndef _MUSYX_S3D
|
||
|
#define _MUSYX_S3D
|
||
|
|
||
|
#include "musyx/musyx.h"
|
||
|
|
||
|
#include "musyx/synthdata.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void s3dKillAllEmitter();
|
||
|
void s3dInit(u32); /* extern */
|
||
|
void s3dKillEmitterByFXID(FX_TAB* fxTab, u32 num);
|
||
|
void s3dExit();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|