Files
PS2Recomp/ps2xStudio/include/ui/StyleManager.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

11 lines
298 B
C++

#pragma once
#include "imgui.h"
#include "../StudioState.hpp"
namespace StyleManager {
void ApplyTheme(ThemeMode mode, AppSettings& settings);
void ApplyDarkTheme();
void ApplyLightTheme();
void ApplyCustomTheme(AppSettings& settings);
void SetupFonts(AppSettings& settings);
}