blob: fd0ace6131d7ab8a4a135783b1c383a0f222e6e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <iostream>
#include <string>
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;
}
|