nbtrock 0.1.0

Read And Write Bedrock NBT
Documentation

读取与生成基岩版NBT结构

Example

读取NBT并打印

use crate::*;
fn read_example() -> IResult<()> {
println!(
"{}",
NBT::from_path(Path::new("res/gold_farm.mcstructure"))?
);
Ok(())
}