XPlor/libs/xassets/xcleafbrushnodeleaf.cpp

25 lines
447 B
C++
Raw Normal View History

2025-08-17 13:14:17 -04:00
#include "xcleafbrushnodeleaf.h"
XCLeafBrushNodeLeaf::XCLeafBrushNodeLeaf()
2025-09-05 18:35:17 -04:00
: XCLeafBrushNodeData()
, mBrushes()
{
SetName("C Leaf Brush Node Leaf");
2025-09-05 18:35:17 -04:00
}
void XCLeafBrushNodeLeaf::ParseData(XDataStream *aStream)
2025-09-05 18:35:17 -04:00
{
Q_UNUSED(aStream);
2025-09-05 18:35:17 -04:00
// TODO: Fill in XCLeafBrushNodeLeaf::ParseData
2025-08-17 13:14:17 -04:00
if (GetPtr() == -1) {
// We would parse brushes here, but we're using a placeholder
}
}
2025-09-07 13:13:27 -04:00
void XCLeafBrushNodeLeaf::Clear()
{
}