Files
ss/src/d/snd/d_snd_rng_id_if.cpp
T
2025-09-13 11:10:26 +02:00

18 lines
339 B
C++

#include "d/snd/d_snd_rng_id_if.h"
bool dSndRngIdIf_c::doNextIdNoReuse() {
return handleId(nextIdNoReuse());
}
bool dSndRngIdIf_c::doRndId() {
return handleId(rndId());
}
bool dSndRngIdIf_c::doRndIdNoReuse() {
return handleId(rndIdNoReuse());
}
bool dSndRngIdIf_c::doRndIdNotSame() {
return handleId(rndIdNotSame());
}