Updated libs/xassets/xfxfloatrange.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:27:27 +00:00
parent ef884f4be7
commit c968117ed1

View File

@ -0,0 +1,25 @@
#include "xfxfloatrange.h"
XFxFloatRange::XFxFloatRange()
: XAsset()
, mBase(0)
, mAmplitude(0)
{
}
XFxFloatRange::~XFxFloatRange()
{
}
void XFxFloatRange::Clear()
{
mBase = 0;
mAmplitude = 0;
}
void XFxFloatRange::ParseData(QDataStream *aStream)
{
}