blob: 0807d8e229325dc6d059c4c6e51a6bd88c9b8ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "d/snd/d_snd_source_harp_related.h"
#include "d/snd/d_snd_source.h"
dSndSourceHarpRelated_c::dSndSourceHarpRelated_c(
s32 sourceType, dAcBase_c *ac, const char *name, dSndSourceGroup_c *pOwnerGroup
)
: dSoundSource_c(sourceType, ac, name, pOwnerGroup) {
// TODO
}
dSndSourceHarpRelated_c::~dSndSourceHarpRelated_c() {
// TODO
}
void dSndSourceHarpRelated_c::postCalc() {
// TODO
}
void dSndSourceHarpRelated_c::setPause(bool flag, int fadeFrames) {
// TODO
}
|