sys: Updated ImGui, ImPlot and imnodes to latest versions

This commit is contained in:
WerWolv
2022-08-03 23:32:34 +02:00
parent 09a1e59b8c
commit deabacbd50
43 changed files with 10201 additions and 10955 deletions

View File

@@ -33,6 +33,8 @@ namespace hex {
void frame();
void frameEnd();
void processEvent() { this->m_hadEvent = true; }
void initGLFW();
void initImGui();
void exitGLFW();
@@ -56,6 +58,10 @@ namespace hex {
std::fs::path m_imguiSettingsPath;
bool m_mouseButtonDown = false;
bool m_hadEvent = false;
bool m_frameRateTemporarilyUnlocked = false;
double m_frameRateUnlockTime = 0;
};
}