mirror of
https://github.com/ran-j/PS2Recomp.git
synced 2026-09-26 16:59:35 -04:00
765cbcca0f
* 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
16 lines
456 B
C++
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();
|
|
} |