10 lines
203 B
C++
10 lines
203 B
C++
#pragma once
|
|
|
|
#include <efsw/efsw.hpp>
|
|
#include "game_engine.hpp"
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
void output(const string &msg);
|
|
|
|
int main_loop(GameEngine &game, std::function<bool()> runner);
|