2025-08-14 17:30:25 -04:00
|
|
|
#include "xstreamedsound.h"
|
|
|
|
|
|
|
|
|
|
XStreamedSound::XStreamedSound()
|
2025-09-10 21:58:26 -04:00
|
|
|
: XAsset()
|
2025-08-14 17:30:25 -04:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("Streamed Sound");
|
2025-08-14 17:30:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XStreamedSound::~XStreamedSound()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XStreamedSound::ParseData(XDataStream *aStream)
|
2025-08-14 17:30:25 -04:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
2025-08-14 17:30:25 -04:00
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
// TODO: Fill in XStreamedSound::ParseData
|
2025-08-14 17:30:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XStreamedSound::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|