LibAC-cpp/src/nbt/Accountant.h
2024-07-30 22:30:55 -07:00

21 lines
406 B
C++

#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