Updated libs/xassets/xgfxshadowgeometry.h
This commit is contained in:
parent
749084539e
commit
147e4bb079
26
libs/xassets/xgfxshadowgeometry.h
Normal file
26
libs/xassets/xgfxshadowgeometry.h
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#ifndef XGFXSHADOWGEOMETRY_H
|
||||||
|
#define XGFXSHADOWGEOMETRY_H
|
||||||
|
|
||||||
|
#include "xasset.h"
|
||||||
|
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
class XGfxShadowGeometry : public XAsset
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit XGfxShadowGeometry();
|
||||||
|
~XGfxShadowGeometry();
|
||||||
|
|
||||||
|
virtual void ParseData(QDataStream* aStream) override;
|
||||||
|
virtual void Clear() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
quint16 mSurfaceCount;
|
||||||
|
quint16 mModelCount;
|
||||||
|
qint32 mSortedSurfIndexPtr;
|
||||||
|
QVector<quint16> mSortedSurfIndex;
|
||||||
|
qint32 mModelIndexPtr;
|
||||||
|
QVector<quint16> mModelIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // XGFXSHADOWGEOMETRY_H
|
||||||
Loading…
x
Reference in New Issue
Block a user