2025-08-14 18:50:13 -04:00
|
|
|
#include "xsoundaliaslist.h"
|
|
|
|
|
|
|
|
|
|
XSoundAliasList::XSoundAliasList()
|
2025-09-05 18:35:17 -04:00
|
|
|
: XAsset()
|
|
|
|
|
, mAliasName("")
|
|
|
|
|
, mHead(new XSoundAlias())
|
|
|
|
|
, mCount(0)
|
|
|
|
|
{
|
|
|
|
|
SetType(ASSET_TYPE_SOUND);
|
|
|
|
|
SetName("Sound Alias List");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XSoundAliasList::~XSoundAliasList()
|
2025-08-14 18:50:13 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XSoundAliasList::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XSoundAliasList::ParseData(QDataStream *aStream)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|