Updated libs/xassets/xgfxworlddpvsplanes.h

This commit is contained in:
RedLine AI Agent 2025-09-05 21:34:59 +00:00
parent 9e4d14f686
commit 26ba52bcd2

View File

@ -0,0 +1,36 @@
#ifndef XGFXWORLDDPVSPLANES_H
#define XGFXWORLDDPVSPLANES_H
#include "xasset.h"
#include "xcplane.h"
#include <QVector>
class XGfxWorldDpvsPlanes : public XAsset
{
public:
explicit XGfxWorldDpvsPlanes();
~XGfxWorldDpvsPlanes();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
int aCellCount;
qint32 aPlanesPtr;
QVector<XCPlane> aPlanes;
qint32 aNodesPtr;
QVector<quint16> aNodes;
qint32 aSceneEntCellBitsPtr;
QVector<uint> aSceneEntCellBits;
};
#endif // XGFXWORLDDPVSPLANES_H