XPlor/libs/xassets/xfxspawndefoneshot.cpp

19 lines
318 B
C++

#include "xfxspawndefoneshot.h"
XFxSpawnDefOneShot::XFxSpawnDefOneShot()
: XAsset()
, mCount()
{
SetName("Spawn Definition Oneshot");
}
void XFxSpawnDefOneShot::Clear()
{
mCount.Clear();
}
void XFxSpawnDefOneShot::ParseData(XDataStream *aStream)
{
mCount.ParseData(aStream);
}