Updated libs/xassets/xfxelematlas.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:26:32 +00:00
parent d075ad4c24
commit 8d5c2c7ea1

View File

@ -0,0 +1,35 @@
#include "xfxelematlas.h"
XFxElemAtlas::XFxElemAtlas()
: XAsset()
, mBehavior(0)
, mIndex(0)
, mFps(0)
, mLoopCount(0)
, mColIndexBits(0)
, mRowIndexBits(0)
, mEntryCount(0)
{
}
XFxElemAtlas::~XFxElemAtlas()
{
}
void XFxElemAtlas::Clear()
{
mBehavior = 0;
mIndex = 0;
mFps = 0;
mLoopCount = 0;
mColIndexBits = 0;
mRowIndexBits = 0;
mEntryCount = 0;
}
void XFxElemAtlas::ParseData(QDataStream *aStream)
{
}