Makes some stuff work
This commit is contained in:
parent
43e16ce945
commit
e5a3717e64
24 changed files with 2048 additions and 1 deletions
21
src/nbt/Accountant.h
Normal file
21
src/nbt/Accountant.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue