Updated libs/xassets/xgfxportalwritable.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:34:36 +00:00
parent a2acf1dd90
commit 6dd8a4a24c

View File

@ -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()
{
}