From 2f4bc7bb0549ea15e30ca3f9ae8e31b11b31445c Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:46 +0000 Subject: [PATCH] Updated libs/xassets/xgfxstaticmodeldrawinst.cpp --- libs/xassets/xgfxstaticmodeldrawinst.cpp | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libs/xassets/xgfxstaticmodeldrawinst.cpp 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() +{ + +}