Makes some stuff work

This commit is contained in:
zontreck 2024-07-30 22:30:55 -07:00
parent 43e16ce945
commit e5a3717e64
24 changed files with 2048 additions and 1 deletions

21
src/nbt/Accountant.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef NBTACCOUNTANT_H
#define NBTACCOUNTANT_H
#include "Tag.h" // Assuming this includes definitions for Tag, CompoundTag, and ListTag
namespace nbt
{
class NBTAccountant
{
public:
static void printRead(const Tag &tag);
static void visitTag();
static void leaveTag(const Tag &tag);
private:
static int _prettyIndex;
};
}
#endif // NBTACCOUNTANT_H