XPlor/libs/xassets/xstreamedsound.cpp
2025-09-10 21:58:26 -04:00

25 lines
316 B
C++

#include "xstreamedsound.h"
XStreamedSound::XStreamedSound()
: XAsset()
{
SetName("Streamed Sound");
}
XStreamedSound::~XStreamedSound()
{
}
void XStreamedSound::ParseData(XDataStream *aStream)
{
Q_UNUSED(aStream);
// TODO: Fill in XStreamedSound::ParseData
}
void XStreamedSound::Clear()
{
}