mirror of
https://github.com/zeldaret/ss
synced 2026-05-28 00:15:59 -04:00
15 lines
268 B
C++
15 lines
268 B
C++
#ifndef D_SND_3D_ACTOR_H
|
|
#define D_SND_3D_ACTOR_H
|
|
|
|
#include "nw4r/snd/snd_SoundActor.h"
|
|
|
|
class dSndActor_c : public nw4r::snd::SoundActor {
|
|
public:
|
|
dSndActor_c(nw4r::snd::SoundArchivePlayer &rPlayer);
|
|
|
|
private:
|
|
void doesSomethingWithForeachSound();
|
|
};
|
|
|
|
#endif
|