This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.World/EndTag.h
2026-03-01 12:16:08 +08:00

25 lines
387 B
C++

#pragma once
#include "Tag.h"
class EndTag : public Tag
{
public:
EndTag() : Tag(L"") {}
EndTag(const wstring &name) : Tag(name) {}
void load(DataInput *dis) {};
void write(DataOutput *dos) {};
byte getId() { return TAG_End; }
wstring toString() { return wstring( L"END" ); }
Tag *copy()
{
return new EndTag();
}
bool equals(Tag *obj)
{
return Tag::equals(obj);
}
};