SmartOS/Core/Random.h

17 lines
215 B
C++

#ifndef __Random_H__
#define __Random_H__
// 随机数
class Random
{
public:
Random();
Random(int seed);
int Next() const;
int Next(int max) const;
void Next(Buffer& bs) const;
};
#endif