Files
Loki Rautio 087b7e7abf Revert "Project modernization (#630)"
This code was not tested and breaks in Release builds, reverting to restore
functionality of the nightly. All in-game menus do not work and generating
a world crashes.

This reverts commit a9be52c41a.
2026-03-07 21:12:22 -06:00

36 lines
661 B
C++

#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, int tagDepth) { 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;
}
};