feat: sync with Whoa implementation

This commit is contained in:
VDm 2026-04-24 00:30:51 +04:00
parent 254ba545f5
commit 6a31dc3ea4
19 changed files with 988 additions and 774 deletions

View file

@ -0,0 +1,20 @@
#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