Files
easy7zip/Common/Random.h
Igor Pavlov 8c1b5c7b7e 3.13
2016-05-28 00:15:41 +01:00

19 lines
195 B
C++
Executable File

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