2025-09-05 21:32:26 +00:00
|
|
|
#include "xgfxbrushmodel.h"
|
|
|
|
|
|
|
|
|
|
XGfxBrushModel::XGfxBrushModel()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, mWritable()
|
|
|
|
|
, mBounds()
|
|
|
|
|
, mSurfaceCount(0)
|
|
|
|
|
, mStartSurfIndex(0)
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("GFX Brush Model");
|
2025-09-05 21:32:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XGfxBrushModel::~XGfxBrushModel()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XGfxBrushModel::ParseData(XDataStream *aStream)
|
2025-09-05 21:32:26 +00:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
|
|
|
|
|
|
|
|
|
// TODO: Fill in XGfxBrushModel::ParseData
|
2025-09-05 21:32:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XGfxBrushModel::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|