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 bb3683d8fb - Show all commits

View File

@ -0,0 +1,30 @@
#ifndef XGFXPORTALWRITABLE_H
#define XGFXPORTALWRITABLE_H
#include "xasset.h"
#include <QVector>
class XGfxPortal;
class XGfxPortalWritable : public XAsset
{
public:
XGfxPortalWritable();
~XGfxPortalWritable();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
bool mIsQueued;
bool mIsAncestor;
quint8 mRecursionDepth;
quint8 mHullPointCount;
QVector<quint32> mHullPointPtrs;
QVector<float> mHullPoints;
qint32 mQueuedParentPtr;
XGfxPortal *mQueuedParent;
};
#endif // XGFXPORTALWRITABLE_H