diff --git a/libs/xassets/xgfxstaticmodeldrawinst.cpp b/libs/xassets/xgfxstaticmodeldrawinst.cpp new file mode 100644 index 0000000..4075aa3 --- /dev/null +++ b/libs/xassets/xgfxstaticmodeldrawinst.cpp @@ -0,0 +1,29 @@ +#include "xgfxstaticmodeldrawinst.h" + +XGfxStaticModelDrawInst::XGfxStaticModelDrawInst() + : XAsset() + , mCullDist(false) + , mPlacement() + , mModel(new XModel()) + , mReflectionProbeIndex(0) + , mPrimaryLightIndex(0) + , mLightingHandle(0) + , mFlags(0) +{ + +} + +XGfxStaticModelDrawInst::~XGfxStaticModelDrawInst() +{ + +} + +void XGfxStaticModelDrawInst::ParseData(QDataStream *aStream) +{ + +} + +void XGfxStaticModelDrawInst::Clear() +{ + +}