From 42d1c82a0bfa615b832f5ecc2652edc290bf6e9c Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 15 Dec 2023 23:02:45 -0500 Subject: add json support and other things --- src/nbt/nbt.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/nbt/nbt.h (limited to 'src/nbt/nbt.h') diff --git a/src/nbt/nbt.h b/src/nbt/nbt.h new file mode 100644 index 0000000..13c0606 --- /dev/null +++ b/src/nbt/nbt.h @@ -0,0 +1,7 @@ +#pragma once + +#include "../tag.h" +#include "../stream.h" + +bool nbt_read(tag_t *tag, const stream_t *stream); +bool nbt_print(const tag_t *tag, const stream_t *stream); -- cgit v1.2.3-freya