#include #include #include "spacebot.h" int main(int argc, char* argv[]) { if (argc < 2) { std::cout << "usage: " << argv[0] << " " << std::endl; return 1; } std::string outputFolder = argv[1]; Spacebot bot(outputFolder); bot.writeNextMove(); return 0; }