2025-09-05 21:35:46 +00:00
|
|
|
#ifndef XSENTIENTHANDLE_H
|
|
|
|
|
#define XSENTIENTHANDLE_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
|
|
|
|
|
class XSentientHandle : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XSentientHandle();
|
|
|
|
|
~XSentientHandle();
|
|
|
|
|
|
|
|
|
|
void ParseData(QDataStream *aStream) override;
|
|
|
|
|
void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2025-09-07 12:36:08 -04:00
|
|
|
quint32 mNumber;
|
|
|
|
|
quint32 mInfoIndex;
|
2025-09-05 21:35:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XSENTIENTHANDLE_H
|