From 6dd8a4a24c9608779ed1473e07d18acb95ad203e Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:36 +0000 Subject: [PATCH] Updated libs/xassets/xgfxportalwritable.cpp --- libs/xassets/xgfxportalwritable.cpp | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 libs/xassets/xgfxportalwritable.cpp diff --git a/libs/xassets/xgfxportalwritable.cpp b/libs/xassets/xgfxportalwritable.cpp new file mode 100644 index 0000000..1a3e0dd --- /dev/null +++ b/libs/xassets/xgfxportalwritable.cpp @@ -0,0 +1,31 @@ +#include "xgfxportalwritable.h" +#include "xgfxportal.h" + +XGfxPortalWritable::XGfxPortalWritable() + : XAsset() + , mIsQueued(false) + , mIsAncestor(false) + , mRecursionDepth(0) + , mHullPointCount(0) + , mHullPointPtrs() + , mHullPoints() + , mQueuedParentPtr(0) + , mQueuedParent(new XGfxPortal()) +{ + +} + +XGfxPortalWritable::~XGfxPortalWritable() +{ + +} + +void XGfxPortalWritable::ParseData(QDataStream *aStream) +{ + +} + +void XGfxPortalWritable::Clear() +{ + +}