16 lines
258 B
C++
16 lines
258 B
C++
#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);
|
|
};
|