From 08b6e1d6d983c22d618121e3c6f717605395c39f Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:49 +0000 Subject: [PATCH] Updated libs/xassets/xgfxstaticmodelinst.cpp --- libs/xassets/xgfxstaticmodelinst.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libs/xassets/xgfxstaticmodelinst.cpp diff --git a/libs/xassets/xgfxstaticmodelinst.cpp b/libs/xassets/xgfxstaticmodelinst.cpp new file mode 100644 index 0000000..04b6518 --- /dev/null +++ b/libs/xassets/xgfxstaticmodelinst.cpp @@ -0,0 +1,25 @@ +#include "xgfxstaticmodelinst.h" + +XGfxStaticModelInst::XGfxStaticModelInst() + : XAsset() + , mMins() + , mMaxs() + , mGroundLighting() +{ + +} + +XGfxStaticModelInst::~XGfxStaticModelInst() +{ + +} + +void XGfxStaticModelInst::ParseData(QDataStream *aStream) +{ + +} + +void XGfxStaticModelInst::Clear() +{ + +}