mirror of
https://github.com/zeldaret/ss
synced 2026-08-16 21:17:30 -04:00
12 lines
287 B
C++
12 lines
287 B
C++
#ifndef D_SND_SOURCE_PLAYER_H
|
|
#define D_SND_SOURCE_PLAYER_H
|
|
|
|
#include "d/snd/d_snd_source_anim_sound.h"
|
|
|
|
class dSndSourcePlayer_c : public dSndSourceAnimSound_c {
|
|
public:
|
|
dSndSourcePlayer_c(s32 sourceType, dAcBase_c *ac, const char *name, dSndSourceGroup_c *pOwnerGroup);
|
|
};
|
|
|
|
#endif
|