diff options
author | rtk0c <[email protected]> | 2021-03-31 20:19:18 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-03-31 20:19:18 -0700 |
commit | 44f5fa5c8f258e8fc1f7d7e2e45e0485bd6cc490 (patch) | |
tree | 3f09a1cce46d38f5a8c6266150e67af3802d4b95 /core/src/UI/UI.hpp | |
parent | 31950890c939862f79c817053c106bf711c63a64 (diff) |
Complete items tab (UI and serialization)
Diffstat (limited to 'core/src/UI/UI.hpp')
-rw-r--r-- | core/src/UI/UI.hpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/src/UI/UI.hpp b/core/src/UI/UI.hpp index 52a2ca9..ab35321 100644 --- a/core/src/UI/UI.hpp +++ b/core/src/UI/UI.hpp @@ -4,14 +4,19 @@ namespace ImGui { -void SetNextWindowSizeRelScreen(float xPercent, float yPercent, ImGuiCond_ cond = ImGuiCond_None); -void SetNextWindowCentered(ImGuiCond_ cond = ImGuiCond_None); +void SetNextWindowSizeRelScreen(float xPercent, float yPercent, ImGuiCond cond = ImGuiCond_None); +void SetNextWindowCentered(ImGuiCond cond = ImGuiCond_None); void PushDisabled(); void PopDisabled(); +bool Button(const char* label, bool disabled); +bool Button(const char* label, const ImVec2& sizeArg, bool disabled); + void ErrorIcon(); +void ErrorMessage(const char* fmt, ...); void WarningIcon(); +void WarningMessage(const char* fmt, ...); } // namespace ImGui |