bhtmp 1.0.0

A package to read .bhtmp files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Bhtmp 

A reader for the bhtmp file format.

## Usage

```rust
use bhtmp::Bhtmp;

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


```