blob: b17c61239c3a218ed61ef410f7eb97019b052883 [file] [log] [blame] [raw]
package net.querz.nbt.io;
import net.querz.nbt.tag.Tag;
import java.io.IOException;
public interface NBTInput {
NamedTag readTag(int maxDepth) throws IOException;
Tag<?> readRawTag(int maxDepth) throws IOException;
}