mirror of
https://github.com/Lorenzooone/Pokemon-Gen3-to-Gen-X.git
synced 2026-04-27 00:56:55 -05:00
12 lines
191 B
C
12 lines
191 B
C
#ifndef RNG__
|
|
#define RNG__
|
|
|
|
void init_rng(u32, u32);
|
|
void disable_advances(void);
|
|
void enable_advances(void);
|
|
u32 get_rng(void);
|
|
void advance_rng(void);
|
|
void increase_rng(u32, u32);
|
|
|
|
#endif
|