读取与生成基岩版NBT结构
读取NBT并打印
use crate::*; fn read_example() -> IResult<()> { println!( "{}", NBT::from_path(Path::new("res/gold_farm.mcstructure"))? ); Ok(()) }