From ab9e685e2461e2ff7c553a6cf3fbfb1ead4fd986 Mon Sep 17 00:00:00 2001 From: omar Date: Fri, 30 Jun 2023 20:13:56 +0200 Subject: [PATCH] Updated Quickstart (markdown) --- Quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quickstart.md b/Quickstart.md index 3ccee1f..e139557 100644 --- a/Quickstart.md +++ b/Quickstart.md @@ -29,7 +29,7 @@ If you are creating a new application from scratch: while it is generally outsid ## Setting up Dear ImGui & Backends -- (1) Include header files for main lib (`#include "imgui.h"`) + backends (e.g. `#include "imgui_impl_win32.h"`, `#include "imgui_impl_dx11.h"`). +- (1) Add `imgui/` to include paths. Include header files for main lib (`#include "imgui.h"`) + backends (e.g. `#include "imgui_impl_win32.h"`, `#include "imgui_impl_dx11.h"`). - (2) Create Dear ImGui context with `ImGui::CreateContext()`. - (3) Optionally set configuration flags, load fonts, setup style. - (4) Initialize Platform and Rendering backends (e.g. `ImGui_ImplWin32_Init()` + `ImGui_ImplDX11_Init()`).