summaryrefslogtreecommitdiff
path: root/src/d/snd/d_snd_rng_id_if.cpp
blob: 7fdf103ec2bbdbec13eaaa970ed0e34c73c2e5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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());
}