mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
230 B
C
13 lines
230 B
C
|
#ifndef random_h
|
||
|
#define random_h
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
uint8_t GB_random(void);
|
||
|
uint32_t GB_random32(void);
|
||
|
void GB_random_seed(uint64_t seed);
|
||
|
void GB_random_set_enabled(bool enable);
|
||
|
|
||
|
#endif /* random_h */
|