+Added support for new easier map file format +Added version print +Added map output options *Reorganized options *Internal fixes on quotes
12 lines
228 B
C++
12 lines
228 B
C++
#ifndef FORMAT_HPP
|
|
#define FORMAT_HPP
|
|
|
|
#include <ztd/filedat.hpp>
|
|
|
|
ztd::chunkdat mimtochk(const std::string& mim);
|
|
|
|
std::string file_strimport(const std::string& path);
|
|
|
|
bool is_mim(const std::string& str);
|
|
|
|
#endif //FORMAT_HPP
|