mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
11 lines
184 B
C++
Executable file
11 lines
184 B
C++
Executable file
struct Random {
|
|
void seed(unsigned seed);
|
|
unsigned operator()(unsigned result = 0);
|
|
void serialize(serializer&);
|
|
Random();
|
|
|
|
private:
|
|
unsigned iter;
|
|
};
|
|
|
|
extern Random random;
|