typhoon/tempest/random/CRndSeed.hpp
2026-04-24 00:30:51 +04:00

20 lines
373 B
C++

#ifndef TEMPEST_RANDOM_C_RND_SEED_HPP
#define TEMPEST_RANDOM_C_RND_SEED_HPP
#include <cstdint>
class CRndSeed {
friend class CRandom;
public:
// Public member functions
CRndSeed(uint32_t seed);
void SetSeed(uint32_t seed);
protected:
// Protected member variables
uint32_t rndacc;
uint32_t rndvls;
};
#endif