blob: e29981fca3fec1274de407b8315a33bc408f8c21 [file] [log] [blame] [raw]
package net.querz.nbt.io;
import net.querz.nbt.tag.Tag;
import java.io.IOException;
public class SNBTUtil {
public static String toSNBT(Tag<?> tag) throws IOException {
return new SNBTSerializer().toString(tag);
}
public static Tag<?> fromSNBT(String string) throws IOException {
return new SNBTDeserializer().fromString(string);
}
}