Blamite Game Engine - blam!  00296.01.12.21.0102.blamite
The core library for the Blamite Game Engine.
imgui_font_selector.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../../debug_ui.h"
4 
6 {
11  {
12  private:
13 
14  public:
15  void Draw()
16  {
17  if (show)
18  {
19  if (ImGui::Begin("ImGui Font Selector"))
20  {
21  ImGui::ShowFontSelector("Choose Font");
22  }
23  ImGui::End();
24  }
25  }
26  };
27 }
Blam::DebugUI::Windows::ImGuiFontSelectorWindow::Draw
void Draw()
Draws the contents of the group.
Definition: imgui_font_selector.hpp:15
Blam::DebugUI::Windows::ImGuiFontSelectorWindow
Wrapper for ImGui's built-in font selector.
Definition: imgui_font_selector.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