diff --git a/libs/xassets/xcmodel.cpp b/libs/xassets/xcmodel.cpp new file mode 100644 index 0000000..71b3306 --- /dev/null +++ b/libs/xassets/xcmodel.cpp @@ -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(); +}