From 1ca67664021558806dccd6df693a39c04b06352f Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:50 +0000 Subject: [PATCH] Updated libs/xassets/xgfxstaticmodelinst.h --- libs/xassets/xgfxstaticmodelinst.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libs/xassets/xgfxstaticmodelinst.h diff --git a/libs/xassets/xgfxstaticmodelinst.h b/libs/xassets/xgfxstaticmodelinst.h new file mode 100644 index 0000000..3a766c4 --- /dev/null +++ b/libs/xassets/xgfxstaticmodelinst.h @@ -0,0 +1,24 @@ +#ifndef XGFXSTATICMODELINST_H +#define XGFXSTATICMODELINST_H + +#include "xasset.h" +#include "xgfxcolor.h" + +#include + +class XGfxStaticModelInst : public XAsset +{ +public: + XGfxStaticModelInst(); + ~XGfxStaticModelInst(); + + virtual void ParseData(QDataStream* aStream) override; + virtual void Clear() override; + +private: + QVector3D mMins; + QVector3D mMaxs; + XGfxColor mGroundLighting; +}; + +#endif // XGFXSTATICMODELINST_H