Files
PS2Recomp/ps2xStudio/include/GUI.hpp
T
Vova Vovchok 765cbcca0f Integrate ps2xStudio and improve elf_analyzer callback detection (#83)
* Integrate ps2xStudio and improve elf_analyzer callback detection

* Update CMakeLists.txt for ImGui libraries

* CMakeLists Fixes Again

Updated dependencies and improved comments for clarity.

* Again CMakeLists. Now it definitely works

* again CMakeLists

* Update CMakeLists.txt ps2xStudio & ps2xTest

* Update CMakeLists.txt

* Update CMakeLists.txt

* Update StudioState.hpp

* Update CMakeLists.txt
2026-03-01 16:41:33 -03:00

16 lines
456 B
C++

#pragma once
#include "StudioState.hpp"
namespace GUI {
void DrawStudio(StudioState& state);
void ApplySettings(StudioState& state);
// Called from main loop BEFORE NewFrame when fonts need rebuilding
void RebuildFontsIfNeeded(StudioState& state);
// Notify GUI that config editor should resync
void SyncConfigEditor(StudioState& state);
// Returns true when user requested exit (File > Exit)
bool WantsQuit();
}