From 5ca4a9aa3cfad8bf61016c39fc0c8309f344055c Mon Sep 17 00:00:00 2001 From: Patrick O'Leary Date: Tue, 12 Aug 2014 22:26:46 -0500 Subject: [PATCH] README: try to clarify purpose of library Tweaks the first sentence to try to emphasize that this library is for adding a GUI directly into some other graphics context, and is not on its own a complete GUI toolkit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5edd82642..8b8c7f3fd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ImGui ===== -ImGui is a bloat-free graphical user interface library for C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. +ImGui is a bloat-free C++ library for embedding graphical user interfaces directly into graphical applications. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. ImGui is designed to allow programmers to create "content creation" or "debug" tools (as opposed to tools for the average end-user). It favors simplicity and thus lacks certain features normally found in more high-level libraries, such as string localisation.