Implement TODO: ParseData for XCLeafBrushNodeLeaf

This commit is contained in:
njohnson 2025-09-10 21:57:08 -04:00
parent b13001ac90
commit e290f2aca9

View File

@ -2,15 +2,17 @@
XCLeafBrushNodeLeaf::XCLeafBrushNodeLeaf() XCLeafBrushNodeLeaf::XCLeafBrushNodeLeaf()
: XCLeafBrushNodeData() : XCLeafBrushNodeData()
, mBrushes() { , mBrushes()
}
XCLeafBrushNodeLeaf::~XCLeafBrushNodeLeaf()
{ {
SetName("C Leaf Brush Node Leaf");
} }
void XCLeafBrushNodeLeaf::ParseData(QDataStream *aStream) { void XCLeafBrushNodeLeaf::ParseData(XDataStream *aStream)
{
Q_UNUSED(aStream);
// TODO: Fill in XCLeafBrushNodeLeaf::ParseData
if (GetPtr() == -1) { if (GetPtr() == -1) {
// We would parse brushes here, but we're using a placeholder // We would parse brushes here, but we're using a placeholder
} }