Files
easy7zip/CPP/Common/Random.h
Igor Pavlov a36c48cece 23.01
2023-12-22 17:17:05 +00:00

15 lines
193 B
C++
Executable File

// Common/Random.h
#ifndef ZIP7_INC_COMMON_RANDOM_H
#define ZIP7_INC_COMMON_RANDOM_H
class CRandom
{
public:
void Init();
void Init(unsigned int seed);
int Generate() const;
};
#endif