You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
370 B
C++

#ifndef NBTMODIFIER_TAGEND_H
#define NBTMODIFIER_TAGEND_H
#include "AbstractTag.h"
class TagEnd : public AbstractTag {
public:
static constexpr quint8 ID = 0;
explicit TagEnd();
protected:
virtual bool const readFromData(QDataStream &data) override;
virtual bool const writeToData(QDataStream &data) const override;
};
#endif //NBTMODIFIER_TAGEND_H