XPlor/libs/xassets/xdvpsplane.h

24 lines
410 B
C
Raw Permalink Normal View History

2025-09-05 21:24:56 +00:00
#ifndef XDVPSPLANE_H
#define XDVPSPLANE_H
#include "xasset.h"
#include <QVector>
class XDpvsPlane : public XAsset
{
public:
explicit XDpvsPlane();
2025-09-10 21:58:26 -04:00
~XDpvsPlane() = default;
2025-09-05 21:24:56 +00:00
2025-09-10 21:58:26 -04:00
virtual void ParseData(XDataStream* aStream) override;
2025-09-05 21:24:56 +00:00
virtual void Clear() override;
private:
QVector<float> mCoeffs;
QVector<quint8> mSide;
quint8 mPad;
};
#endif // XDVPSPLANE_H