Updated libs/xassets/xfxspawndef.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:30:51 +00:00
parent e1ec4b8878
commit 6fbd17291a

View File

@ -0,0 +1,25 @@
#include "xfxspawndef.h"
XFxSpawnDef::XFxSpawnDef()
: XAsset()
, mLooping()
, mOneShot()
{
}
XFxSpawnDef::~XFxSpawnDef()
{
}
void XFxSpawnDef::Clear()
{
mLooping.Clear();
mOneShot.Clear();
}
void XFxSpawnDef::ParseData(QDataStream *aStream)
{
}