[No changes]

This commit is contained in:
RedLine AI Agent 2025-09-05 21:24:51 +00:00
parent cc5c1854e2
commit 26a1629dee

29
libs/xassets/xcmodel.cpp Normal file
View File

@ -0,0 +1,29 @@
#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();
}