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/gui.hpp

16 lines
258 B

#pragma once
#include <efsw/efsw.hpp>
#include "game_engine.hpp"
#include <filesystem>
#include <string>
class GUI {
vector<string> lines;
public:
void output(const string &msg);
int main_loop(GameEngine &game, std::function<bool()> runner);
};