feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 8d5c2c7ea1 - Show all commits

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)
{
}