feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 26ba52bcd2 - Show all commits

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