XPlor/libs/xassets/xphysgeominfo.h
2025-09-10 21:58:26 -04:00

25 lines
450 B
C++

#ifndef XPHYSGEOMINFO_H
#define XPHYSGEOMINFO_H
#include "xasset.h"
#include "xbrushwrapper.h"
class XPhysGeomInfo : public XAsset
{
public:
XPhysGeomInfo();
~XPhysGeomInfo();
virtual void ParseData(XDataStream* aStream) override;
virtual void Clear() override;
private:
XBrushWrapper mBrush;
int mType;
QVector<QVector3D> mOrientation;
QVector3D mOffset;
QVector3D mHalfLengths;
};
#endif // XPHYSGEOMINFO_H