turings-tarpit/builder.hpp
2024-09-07 22:26:57 -04:00

21 lines
309 B
C++

#pragma once
#include "gui.hpp"
#include "game_engine.hpp"
#include "coro.hpp"
using std::string;
class Builder {
GUI gui;
GameEngine game;
string git_path = "NOT SET";
string build_cmd = "NOT SET";
public:
Builder(GUI &g, GameEngine &engine);
Task<unsigned> run_build();
void run();
};