aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/Random.h
blob: 283869e29f4d8af84435750311c58df3873f39ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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