Updated libs/xassets/xgfxportalwritable.h

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

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