Crates.io | bhtmp |
lib.rs | bhtmp |
version | 1.0.0 |
source | src |
created_at | 2023-07-16 18:55:03.043996 |
updated_at | 2023-07-16 18:57:18.542191 |
description | A package to read .bhtmp files. |
homepage | |
repository | https://github.com/asciiboi/bhtmp/ |
max_upload_size | |
id | 917897 |
size | 2,901 |
A reader for the bhtmp file format.
use bhtmp::Bhtmp;
let map: Bhtmp = bhtmp::Bhtmp::new(
include_bytes!("./HeightMap.bhtmp")
.iter()
.map(|v|*v)
.collect()
);