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

14 lines
230 B

#include "builder.hpp"
#include "gui.hpp"
#include <fmt/core.h>
int main(int argc, char *argv[])
{
GUI gui;
GameEngine game{100};
auto builder = Builder(gui, game);
gui.main_loop(game, builder);
return 1;
}