mirror of
https://github.com/pret/pokeruby.git
synced 2024-11-27 23:10:45 +00:00
10 lines
129 B
C
10 lines
129 B
C
#ifndef GUARD_RNG_H
|
|
#define GUARD_RNG_H
|
|
|
|
extern u32 gRngValue;
|
|
|
|
u16 Random(void);
|
|
void SeedRng(u16 seed);
|
|
|
|
#endif // GUARD_RNG_H
|