From 1722cbf0674f42b9e91b63503c284a53ab9e475b Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:20 +0000 Subject: [PATCH] Updated libs/xassets/xgfxlightregion.cpp --- libs/xassets/xgfxlightregion.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libs/xassets/xgfxlightregion.cpp diff --git a/libs/xassets/xgfxlightregion.cpp b/libs/xassets/xgfxlightregion.cpp new file mode 100644 index 0000000..507c3f4 --- /dev/null +++ b/libs/xassets/xgfxlightregion.cpp @@ -0,0 +1,25 @@ +#include "xgfxlightregion.h" + +XGfxLightRegion::XGfxLightRegion() + : XAsset() + , mHullCount(0) + , mHullsPtr(0) + , mHulls() +{ + +} + +XGfxLightRegion::~XGfxLightRegion() +{ + +} + +void XGfxLightRegion::ParseData(QDataStream *aStream) +{ + +} + +void XGfxLightRegion::Clear() +{ + +}