Updated libs/xassets/xfxspawndeflooping.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:31:06 +00:00
parent 1747f8f8be
commit c72d51ad1e

View File

@ -0,0 +1,25 @@
#include "xfxspawndeflooping.h"
XFxSpawnDefLooping::XFxSpawnDefLooping()
: XAsset()
, mIntervalMsec(0)
, mCount(0)
{
}
XFxSpawnDefLooping::~XFxSpawnDefLooping()
{
}
void XFxSpawnDefLooping::Clear()
{
mIntervalMsec = 0;
mCount = 0;
}
void XFxSpawnDefLooping::ParseData(QDataStream *aStream)
{
}