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 e3db1e11cc - Show all commits

23
libs/xassets/xdvpsplane.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef XDVPSPLANE_H
#define XDVPSPLANE_H
#include "xasset.h"
#include <QVector>
class XDpvsPlane : public XAsset
{
public:
explicit XDpvsPlane();
~XDpvsPlane();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
QVector<float> mCoeffs;
QVector<quint8> mSide;
quint8 mPad;
};
#endif // XDVPSPLANE_H