A weird game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
turings-tarpit/escape_turings_tarpit.cpp

21 lines
425 B

#include "builder.hpp"
#include <fmt/core.h>
int main(int argc, char *argv[])
{
if(argc != 3) {
fmt::println("USAGE: escape_turings_tarpit PATH BUILD_CMD");
return 1;
} else {
const char *git_path = argv[1];
const char *build_cmd = argv[2];
GUI gui;
GameEngine game{100};
auto builder = Builder(gui, game);
builder.run(git_path, build_cmd);
return 1;
}
}