Blamite Game Engine - blam!  00296.01.12.21.0102.blamite
The core library for the Blamite Game Engine.
imgui_style_editor.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../../debug_ui.h"
4 
6 {
11  {
12  public:
13  void Draw()
14  {
15  if (show)
16  {
17  if (ImGui::Begin("ImGui Style Editor", &show))
18  {
19  ImGui::ShowStyleEditor();
20  }
21  ImGui::End();
22  }
23  }
24  };
25 }
Blam::DebugUI::Windows::ImGuiStyleEditorWindow::Draw
void Draw()
Draws the contents of the group.
Definition: imgui_style_editor.hpp:13
Blam::DebugUI::Windows::ImGuiStyleEditorWindow
Wrapper for ImGui's built-in style editor.
Definition: imgui_style_editor.hpp:10
Blam::DebugUI::ImGUIDrawingGroup::show
bool show
Controls whether or not the group should be shown. May not be used in all groups.
Definition: debug_ui.h:362
Blam::DebugUI::ImGUIDrawingGroup
Class representing an ImGUI drawing group/draw list item.
Definition: debug_ui.h:359
Blam::DebugUI::Windows
Legacy namespace to contain data for the legacy ImGUI console.
Definition: debug_ui.h:434