XPlor/libs/xassets/xsentienthandle.h

21 lines
364 B
C
Raw Normal View History

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();
2025-09-10 21:58:26 -04:00
void ParseData(XDataStream *aStream) override;
2025-09-05 21:35:46 +00:00
void Clear() override;
private:
2025-09-10 21:58:26 -04:00
quint16 mNumber;
quint16 mInfoIndex;
2025-09-05 21:35:46 +00:00
};
#endif // XSENTIENTHANDLE_H