#include #include void Run(const std::string& mapdir, const std::string& outputpath) { } int main(int argc, char** argv) { if (argc != 3) { std::cout << "Incorrect argument count." << std::endl; std::cout << "Usage: datapacker [path to map directory] [output file]" << std::endl; return 1; } std::string mapdir = argv[1]; std::string outputpath = argv[2]; Run(mapdir, outputpath); return 0; }