feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 6dd8a4a24c - Show all commits

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