Updated libs/xassets/xgfxworldvertexlayerdata.h

This commit is contained in:
RedLine AI Agent 2025-09-05 21:35:04 +00:00
parent cdf01bb966
commit 67668ccc27

View File

@ -0,0 +1,24 @@
#ifndef XGFXWORLDVERTEXLAYERDATA_H
#define XGFXWORLDVERTEXLAYERDATA_H
#include "xasset.h"
#include "xd3dvertexbuffer.h"
#include <QVector>
class XGfxWorldVertexLayerData : public XAsset
{
public:
explicit XGfxWorldVertexLayerData();
~XGfxWorldVertexLayerData();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
qint32 mDataPtr;
QVector<quint8> mData;
XD3DVertexBuffer mLayerVb;
};
#endif // XGFXWORLDVERTEXLAYERDATA_H