2025-09-05 21:32:37 +00:00
|
|
|
#ifndef XGFXBRUSHMODELWRITABLE_H
|
|
|
|
|
#define XGFXBRUSHMODELWRITABLE_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
|
|
|
|
|
#include <QVector3D>
|
|
|
|
|
|
|
|
|
|
class XGfxBrushModelWritable : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
XGfxBrushModelWritable();
|
|
|
|
|
~XGfxBrushModelWritable();
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
virtual void ParseData(XDataStream* aStream) override;
|
2025-09-05 21:32:37 +00:00
|
|
|
virtual void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QVector3D mMins;
|
|
|
|
|
QVector3D mMaxs;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XGFXBRUSHMODELWRITABLE_H
|