refactor: Better interface for the event system

This commit is contained in:
WerWolv
2023-12-08 10:29:44 +01:00
parent f08d1e265c
commit b4813660b5
63 changed files with 327 additions and 320 deletions

View File

@@ -23,7 +23,7 @@ namespace hex::init {
bool async;
};
enum FrameResult{ success, failure, wait };
enum FrameResult{ Success, Failure, Running };
struct Highlight {
ImVec2 start;
@@ -59,8 +59,8 @@ namespace hex::init {
void initImGui();
void initMyself();
void exitGLFW();
void exitImGui();
void exitGLFW() const;
void exitImGui() const;
std::future<bool> processTasksAsync();