bsnes-hd/bsnes/gb/Core/random.h
2020-01-12 22:12:37 +01:00

12 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 */