Files
ss/include/nw4r/snd/snd_StrmSoundHandle.h
T
elijah-thomas774 fa9a9ce949 lyt_common match
2024-05-12 20:23:22 -04:00

21 lines
398 B
C++

#ifndef NW4R_SND_STRMSOUNDHANDLE_H
#define NW4R_SND_STRMSOUNDHANDLE_H
#include "common.h"
namespace nw4r {
namespace snd {
struct StrmSoundHandle {
detail::StrmSound *mStrmSound; // at 0x0
inline StrmSoundHandle() : mStrmSound(NULL) {}
inline bool IsAttachedSound() {
return mStrmSound != NULL;
}
void DetachSound();
};
} // namespace snd
} // namespace nw4r
#endif