XPlor/libs/xassets/xsoundaliaslist.h

23 lines
415 B
C
Raw Permalink Normal View History

2025-08-14 18:50:13 -04:00
#ifndef XSOUNDALIASLIST_H
#define XSOUNDALIASLIST_H
#include "xasset.h"
2025-09-05 18:35:17 -04:00
#include "xsoundalias.h"
2025-08-14 18:50:13 -04:00
class XSoundAliasList : public XAsset
{
public:
2025-09-05 18:35:17 -04:00
explicit XSoundAliasList();
2025-08-14 18:50:13 -04:00
~XSoundAliasList();
virtual void Clear() override;
2025-09-10 21:58:26 -04:00
virtual void ParseData(XDataStream* aStream) override;
2025-08-14 18:50:13 -04:00
private:
2025-09-07 12:36:08 -04:00
XString mAliasName;
QVector<XSoundAlias> mAliases;
2025-09-05 18:35:17 -04:00
int mCount;
2025-08-14 18:50:13 -04:00
};
#endif // XSOUNDALIASLIST_H