Completely purge the coroutine stuff from the project.

This commit is contained in:
Zed A. Shaw 2024-09-07 22:48:03 -04:00
parent 453c50c563
commit b0c9fefa9b
3 changed files with 13 additions and 28 deletions

View file

@ -1,7 +1,6 @@
#pragma once
#include "gui.hpp"
#include "game_engine.hpp"
#include "coro.hpp"
using std::string;
@ -15,7 +14,7 @@ class Builder {
Builder(GUI &g, GameEngine &engine);
Task<unsigned> run_build();
void run_build();
void run();
};