mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-07-19 17:12:58 -05:00
15 lines
314 B
C++
15 lines
314 B
C++
#ifndef RANDOM_H
|
|
#define RANDOM_H
|
|
|
|
class Poke_Random{
|
|
public:
|
|
Poke_Random(unsigned int init_seed);
|
|
void next_frame();
|
|
unsigned int get_rand();
|
|
private:
|
|
unsigned int rand;
|
|
};
|
|
|
|
unsigned int convert_random(unsigned int seed, unsigned int inc_min, unsigned int exc_max);
|
|
|
|
#endif |