A reader for the bhtmp file format.
```rs use bhtmp::Bhtmp;
let map: Bhtmp = bhtmp::Bhtmp::new( include_bytes!("./HeightMap.bhtmp") .iter() .map(|v|*v) .collect() );
```