Elaztek Developer Hub
Blamite Game Engine - blam!  00346.12.11.21.0529.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  {
36  ImGui::End();
37  }
38  }
39  };
40 }
ImGui::End
IMGUI_API void End()
Definition: imgui.cpp:6016
ImGui::Begin
IMGUI_API bool Begin(const char *name, bool *p_open=NULL, ImGuiWindowFlags flags=0)
Definition: imgui.cpp:5397
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
ImGui::ShowUserGuide
IMGUI_API void ShowUserGuide()
Definition: imgui_demo.cpp:150
ImGuiWindowFlags_AlwaysAutoResize
@ ImGuiWindowFlags_AlwaysAutoResize
Definition: imgui.h:720
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: ui.h:14
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