summaryrefslogtreecommitdiff
path: root/include/d/snd/d_snd_source_obj_clef.h
blob: 3b2b8d6aa2fd15e6182d83c7cc34165ebbcdc751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef D_SND_SOURCE_OBJ_CLEF_H
#define D_SND_SOURCE_OBJ_CLEF_H

#include "d/snd/d_snd_source_obj.h"

class dSndSourceObjClef_c : public dSndSourceObj_c {
public:
    dSndSourceObjClef_c(s32 sourceType, dAcBase_c *ac, const char *name, dSndSourceGroup_c *pOwnerGroup)
        : dSndSourceObj_c(sourceType, ac, name, pOwnerGroup) {}

    bool startTadtoneSound(u32 groupIdx, u32 noteIdx);
};

#endif