Poke_Transporter_GB/include/random.h
2023-07-03 22:52:38 -05:00

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