Blamite Game Engine - blam!  00296.01.12.21.0102.blamite
The core library for the Blamite Game Engine.
imgui_user_guide.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../debug_ui.h"
4 
6 {
14  {
15  public:
20 
25 
29  void Draw()
30  {
31  //ImGui user guide
32  if (show)
33  {
34  ImGui::Begin("ImGui User Guide", &show, ImGuiWindowFlags_AlwaysAutoResize);
35  ImGui::ShowUserGuide();
36  ImGui::End();
37  }
38  }
39  };
40 }
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::ImGUIUserGuide::~ImGUIUserGuide
~ImGUIUserGuide()
Empty destructor.
Definition: imgui_user_guide.hpp:24
Blam::DebugUI::Windows
Legacy namespace to contain data for the legacy ImGUI console.
Definition: debug_ui.h:434
Blam::DebugUI::Windows::ImGUIUserGuide::ImGUIUserGuide
ImGUIUserGuide()
Empty constructor.
Definition: imgui_user_guide.hpp:19
Blam::DebugUI::Windows::ImGUIUserGuide::Draw
void Draw()
Draws the user guide dialog.
Definition: imgui_user_guide.hpp:29
Blam::DebugUI::Windows::ImGUIUserGuide
Class for the ImGUI user guide.
Definition: imgui_user_guide.hpp:13