Files
ss/include/d/snd/d_snd_rng.h
T
robojumper 5ddf4f86e1 d_snd_rnd
2025-09-13 10:51:37 +02:00

22 lines
290 B
C++

#ifndef D_SND_RNG_H
#define D_SND_RNG_H
#include "common.h"
class dSndRng_c {
public:
dSndRng_c();
virtual ~dSndRng_c() {}
bool rndBool(s32 chance);
u32 rndInt(s32 max);
private:
void init();
/* 0x08 */ u64 field_0x08;
/* 0x10 */ u64 field_0x10;
};
#endif