Expand description
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:
from_map16("input.map16", "map16_folder");To convert from the folder generated by from_map16 back to a binary map16 file, use to_map16:
to_map16("map16_folder", "output.map16"); Enums§
Functions§
- from_
map16 - Converts from a binary map16 file to a folder tree of human-readable text files.
- to_
map16 - Converts from a folder tree of human-readable text files, generally generated by from_map16, back to a binary map16 file.