Updated libs/xassets/xgfxportalwritable.h
This commit is contained in:
parent
6dd8a4a24c
commit
bb3683d8fb
30
libs/xassets/xgfxportalwritable.h
Normal file
30
libs/xassets/xgfxportalwritable.h
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user