20 lines
380 B
C++
20 lines
380 B
C++
#ifndef XCLEAFBRUSHNODELEAF_H
|
|
#define XCLEAFBRUSHNODELEAF_H
|
|
|
|
#include "xcleafbrushnodedata.h"
|
|
|
|
class XCLeafBrushNodeLeaf : public XCLeafBrushNodeData
|
|
{
|
|
public:
|
|
explicit XCLeafBrushNodeLeaf();
|
|
~XCLeafBrushNodeLeaf();
|
|
|
|
void ParseData(QDataStream *aStream) override;
|
|
void Clear() override;
|
|
|
|
private:
|
|
QVector<quint16> mBrushes;
|
|
};
|
|
|
|
#endif // XCLEAFBRUSHNODELEAF_H
|