XPlor/libs/xassets/xfxelematlas.cpp

33 lines
566 B
C++
Raw Normal View History

2025-09-05 21:26:32 +00:00
#include "xfxelematlas.h"
XFxElemAtlas::XFxElemAtlas()
: XAsset()
, mBehavior(0)
, mIndex(0)
, mFps(0)
, mLoopCount(0)
, mColIndexBits(0)
, mRowIndexBits(0)
, mEntryCount(0)
{
2025-09-10 21:58:26 -04:00
SetName("Element Atlas");
2025-09-05 21:26:32 +00:00
}
void XFxElemAtlas::Clear()
{
mBehavior = 0;
mIndex = 0;
mFps = 0;
mLoopCount = 0;
mColIndexBits = 0;
mRowIndexBits = 0;
mEntryCount = 0;
}
2025-09-10 21:58:26 -04:00
void XFxElemAtlas::ParseData(XDataStream *aStream)
2025-09-05 21:26:32 +00:00
{
2025-09-10 21:58:26 -04:00
Q_UNUSED(aStream);
// TODO: Fill in XFxElemAtlas::ParseData
2025-09-05 21:26:32 +00:00
}