human-readable-map16 0.1.0

A wrapper around the human-readable-map16 C++ library for converting between Lunar Magic's binary .map16 format and a human-readable folder tree of text files
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    cc::Build::new()
        .cpp(true)
        .file("human-readable-map16/from_map16.cpp")
        .file("human-readable-map16/to_map16.cpp")
        .file("human-readable-map16/human_readable_map16.cpp")
        .file("human-readable-map16/c_api.cpp")
        .compile("hrm16");
}