From 749084539e71fdfca55a87b585e5c30885724c14 Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:43 +0000 Subject: [PATCH] Updated libs/xassets/xgfxshadowgeometry.cpp --- libs/xassets/xgfxshadowgeometry.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 libs/xassets/xgfxshadowgeometry.cpp diff --git a/libs/xassets/xgfxshadowgeometry.cpp b/libs/xassets/xgfxshadowgeometry.cpp new file mode 100644 index 0000000..898af1a --- /dev/null +++ b/libs/xassets/xgfxshadowgeometry.cpp @@ -0,0 +1,28 @@ +#include "xgfxshadowgeometry.h" + +XGfxShadowGeometry::XGfxShadowGeometry() + : XAsset() + , mSurfaceCount(0) + , mModelCount(0) + , mSortedSurfIndexPtr(0) + , mSortedSurfIndex() + , mModelIndexPtr(0) + , mModelIndex() +{ + +} + +XGfxShadowGeometry::~XGfxShadowGeometry() +{ + +} + +void XGfxShadowGeometry::ParseData(QDataStream *aStream) +{ + +} + +void XGfxShadowGeometry::Clear() +{ + +}