mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-10 14:20:46 +00:00
12 lines
184 B
C++
12 lines
184 B
C++
struct Random {
|
|
void seed(unsigned seed);
|
|
unsigned operator()(unsigned result = 0);
|
|
void serialize(serializer&);
|
|
Random();
|
|
|
|
private:
|
|
unsigned iter;
|
|
};
|
|
|
|
extern Random random;
|