mirror of
https://github.com/zeldaret/ss
synced 2026-08-12 11:52:22 -04:00
19 lines
318 B
C++
19 lines
318 B
C++
#ifndef D_SND_RNG_MGR_H
|
|
#define D_SND_RNG_MGR_H
|
|
|
|
#include "d/snd/d_snd_rng.h"
|
|
#include "d/snd/d_snd_util.h"
|
|
|
|
SND_DISPOSER_FORWARD_DECL(dSndRngMgr_c)
|
|
|
|
class dSndRngMgr_c : public dSndRng_c {
|
|
public:
|
|
SND_DISPOSER_MEMBERS(dSndRngMgr_c)
|
|
|
|
public:
|
|
dSndRngMgr_c() {}
|
|
u32 rndIntRange(s32 min, s32 max);
|
|
};
|
|
|
|
#endif
|