XPlor/libs/xassets/xcmodel.cpp
RedLine AI Agent 26a1629dee [No changes]
2025-09-05 21:24:51 +00:00

30 lines
361 B
C++

#include "xcmodel.h"
XCModel::XCModel()
: XAsset()
, mMins()
, mMaxs()
, mRadius(0.0f)
, mLeaf()
{
}
XCModel::~XCModel()
{
}
void XCModel::ParseData(QDataStream *aStream)
{
}
void XCModel::Clear()
{
mMins = QVector3D();
mMaxs = QVector3D();
mRadius = 0.0f;
mLeaf = XCLeaf();
}