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

Provides a simple wrapper around the C API of the human-readable map16 C++ library.

To convert a binary Lunar Magic map16 file to a folder tree of human-readable text files, use the [from_map16] function:

# use human_readable_map16::from_map16;
from_map16("input.map16", "map16_folder");

To convert from the folder generated by from_map16 back to a binary map16 file, use [to_map16]:

# use human_readable_map16::to_map16;
to_map16("map16_folder", "output.map16");