XPlor/libs/xassets/xphysgeominfo.h

25 lines
451 B
C
Raw Normal View History

2025-09-03 13:20:29 -04:00
#ifndef XPHYSGEOMINFO_H
#define XPHYSGEOMINFO_H
#include "xasset.h"
#include "xbrushwrapper.h"
class XPhysGeomInfo : public XAsset
{
public:
XPhysGeomInfo();
~XPhysGeomInfo();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
XBrushWrapper *mBrush;
int mType;
QVector<QVector3D> mOrientation;
QVector3D mOffset;
QVector3D mHalfLengths;
};
#endif // XPHYSGEOMINFO_H