XPlor/libs/xassets/xgfxportalwritable.cpp
2025-09-05 21:34:36 +00:00

32 lines
520 B
C++

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