diff options
author | YamaArashi <shadow962@live.com> | 2016-07-24 23:06:43 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-07-24 23:06:43 -0700 |
commit | 74957cfce6aab30816393ae4976e312e2574279a (patch) | |
tree | 1159dea97b3452953fedc7edf5705853bf93fa70 /include/rng.h | |
parent | 8459f924d10dc67402e14f64e5332cad30c66d27 (diff) |
RNG header
Diffstat (limited to 'include/rng.h')
-rw-r--r-- | include/rng.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/rng.h b/include/rng.h new file mode 100644 index 000000000..ea600ea41 --- /dev/null +++ b/include/rng.h @@ -0,0 +1,9 @@ +#ifndef GUARD_RNG_H +#define GUARD_RNG_H + +extern u32 gRngValue; + +u16 Random(void); +void SeedRng(u16 seed); + +#endif // GUARD_RNG_H |