mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
17 lines
181 B
C++
Executable File
17 lines
181 B
C++
Executable File
// Common/Random.h
|
|
|
|
#ifndef __COMMON_RANDOM_H
|
|
#define __COMMON_RANDOM_H
|
|
|
|
class CRandom
|
|
{
|
|
public:
|
|
void Init();
|
|
void Init(unsigned int seed);
|
|
int Generate() const;
|
|
};
|
|
|
|
#endif
|
|
|
|
|