blob: 39f6d688758d92cbf8a881e5a0ae6c94ab17b6a5 [file] [log] [blame] [raw]
package net.querz.nbt.io;
import net.querz.nbt.tag.Tag;
import java.io.IOException;
public interface NBTOutput {
void writeTag(NamedTag tag, int maxDepth) throws IOException;
void writeTag(Tag<?> tag, int maxDepth) throws IOException;
void flush() throws IOException;
}