XPlor/libs/xassets/xcleafbrushnodeleaf.h

20 lines
390 B
C
Raw Normal View History

2025-08-17 13:14:17 -04:00
#ifndef XCLEAFBRUSHNODELEAF_H
#define XCLEAFBRUSHNODELEAF_H
2025-09-05 18:35:17 -04:00
#include "xcleafbrushnodedata.h"
2025-08-17 13:14:17 -04:00
2025-09-05 18:35:17 -04:00
class XCLeafBrushNodeLeaf : public XCLeafBrushNodeData
2025-08-17 13:14:17 -04:00
{
public:
explicit XCLeafBrushNodeLeaf();
~XCLeafBrushNodeLeaf() = default;
2025-08-17 13:14:17 -04:00
void ParseData(XDataStream *aStream) override;
2025-09-05 18:35:17 -04:00
void Clear() override;
2025-08-17 13:14:17 -04:00
private:
2025-09-07 12:36:08 -04:00
QVector<quint32> mBrushes;
2025-08-17 13:14:17 -04:00
};
#endif // XCLEAFBRUSHNODELEAF_H