Initial commit

This commit is contained in:
daoge_cmd
2026-03-01 12:16:08 +08:00
parent def8cb4153
commit b691c43c44
19437 changed files with 4363922 additions and 0 deletions

36
Minecraft.World/IntTag.h Normal file
View File

@@ -0,0 +1,36 @@
#pragma once
#include "Tag.h"
class IntTag : public Tag
{
public:
int data;
IntTag(const wstring &name) : Tag(name) {}
IntTag(const wstring &name, int data) : Tag(name) {this->data = data; }
void write(DataOutput *dos) { dos->writeInt(data); }
void load(DataInput *dis) { data = dis->readInt(); }
byte getId() { return TAG_Int; }
wstring toString()
{
static wchar_t buf[32];
swprintf(buf, 32, L"%d", data);
return wstring( buf );
}
Tag *copy()
{
return new IntTag(getName(), data);
}
bool equals(Tag *obj)
{
if (Tag::equals(obj))
{
IntTag *o = (IntTag *) obj;
return data == o->data;
}
return false;
}
};