21 lines
406 B
C++
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
|