mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-05-28 08:24:37 -04:00
12 lines
187 B
C
12 lines
187 B
C
#ifndef _IN_LIB_RNG_H
|
|
#define _IN_LIB_RNG_H
|
|
#include <ultra64.h>
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
u32 random(void);
|
|
void rngSetSeed(u32 seed);
|
|
u32 rngRotateSeed(u64 *value);
|
|
|
|
#endif
|