mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
20 lines
281 B
C
20 lines
281 B
C
#ifndef JAUDIO_RANDOM_H
|
|
#define JAUDIO_RANDOM_H
|
|
|
|
#include "types.h"
|
|
#include "jaudio_NES/audiostruct.h"
|
|
#include "jaudio_NES/audiowork.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern s32 GetRandom_s32(void);
|
|
extern f32 GetRandom_sf32(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|