From 3e3553b2ce68e52e530a4a2ad6997bf2d5964c4a Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:32:26 +0000 Subject: [PATCH] Updated libs/xassets/xgfxbrushmodel.cpp --- libs/xassets/xgfxbrushmodel.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libs/xassets/xgfxbrushmodel.cpp diff --git a/libs/xassets/xgfxbrushmodel.cpp b/libs/xassets/xgfxbrushmodel.cpp new file mode 100644 index 0000000..788d3fb --- /dev/null +++ b/libs/xassets/xgfxbrushmodel.cpp @@ -0,0 +1,26 @@ +#include "xgfxbrushmodel.h" + +XGfxBrushModel::XGfxBrushModel() + : XAsset() + , mWritable() + , mBounds() + , mSurfaceCount(0) + , mStartSurfIndex(0) +{ + +} + +XGfxBrushModel::~XGfxBrushModel() +{ + +} + +void XGfxBrushModel::ParseData(QDataStream *aStream) +{ + +} + +void XGfxBrushModel::Clear() +{ + +}