From 273f650d811f5bf70edba3d2955c9198c5680532 Mon Sep 17 00:00:00 2001 From: Timothy Gibbons Date: Wed, 28 Jul 2021 11:59:05 -0500 Subject: [PATCH] Updated ImGui Widgets (markdown) --- ImGui-Widgets.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ImGui-Widgets.md b/ImGui-Widgets.md index 6f3e274..eaccc9a 100644 --- a/ImGui-Widgets.md +++ b/ImGui-Widgets.md @@ -1,4 +1,14 @@ # Text +## ImGui::Text + +Outputs a formatted text. The format options is like `printf` + +### Input + +### Example +```c++ +ImGui::Text("Hello world %f", 42); +``` # Main