XPlor/libs/xassets/xmodelhighmipbounds.cpp
2025-09-03 13:18:40 -04:00

26 lines
340 B
C++

#include "xmodelhighmipbounds.h"
XModelHighMipBounds::XModelHighMipBounds()
: XAsset()
, mMins()
, mMaxs()
{
}
XModelHighMipBounds::~XModelHighMipBounds()
{
}
void XModelHighMipBounds::ParseData(QDataStream *aStream)
{
}
void XModelHighMipBounds::Clear()
{
mMins = QVector3D();
mMaxs = QVector3D();
}