bhtmp 0.1.0

A package to read .bhtmp files.
Documentation
bhtmp-0.1.0 has been yanked.

Bhtmp

A reader for the bhtmp file format.

Usage

use bhtmp::Bhtmp;

let map: Bhtmp = bhtmp::Bhtmp::new(
    include_bytes!("./HeightMap.bhtmp")
        .iter()
        .map(|v|*v)
        .collect()
);