2025-09-05 21:26:45 +00:00
|
|
|
#ifndef XFXELEMATLAS_H
|
|
|
|
|
#define XFXELEMATLAS_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
|
|
|
|
|
class XFxElemAtlas : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XFxElemAtlas();
|
2025-09-10 21:58:26 -04:00
|
|
|
~XFxElemAtlas() = default;
|
2025-09-05 21:26:45 +00:00
|
|
|
|
|
|
|
|
void Clear() override;
|
2025-09-10 21:58:26 -04:00
|
|
|
void ParseData(XDataStream *aStream) override;
|
2025-09-05 21:26:45 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
quint8 mBehavior;
|
|
|
|
|
quint8 mIndex;
|
|
|
|
|
quint8 mFps;
|
|
|
|
|
quint8 mLoopCount;
|
|
|
|
|
quint8 mColIndexBits;
|
|
|
|
|
quint8 mRowIndexBits;
|
|
|
|
|
qint16 mEntryCount;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XFXELEMATLAS_H
|