[No changes]
This commit is contained in:
parent
cc5c1854e2
commit
26a1629dee
29
libs/xassets/xcmodel.cpp
Normal file
29
libs/xassets/xcmodel.cpp
Normal 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();
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user