From 326b021e0ebfa3acea18323a3929757d18474138 Mon Sep 17 00:00:00 2001 From: Marcus Ottosson Date: Thu, 21 Apr 2016 06:30:58 +0100 Subject: [PATCH] Updated Getting Started (markdown) --- Getting-Started.md | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 2b8e267..ddb5f09 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -21,17 +21,25 @@ This article will guide you through getting up and running with as many assumpti ### Organisation +``` | File | Description -|:-------------------|:------------------- -| `examples/` | Some examples for various backends and windowing libraries -| `extra_fonts/` | Optional assets (that should really be contained in its own repository :) -| `imconfig.h` | Template for *mandatory* configuration file (should really be optional :) -| `imgui.cpp` | The main source -| `imgui.h` | The main header -| `imgui_demo.cpp` | An example (that should really be located in in `examples/` :) -| `imgui_draw.cpp` | A mandatory source file (that should really be merged with `imgui.cpp` :) -| `imgui_internal.h` | Internal details, without guarantee of backward compatibility -| `stb_*` | External library +|--------------------|-------------------- +| imgui/ | +| examples/ | Some examples for various backends and windowing libraries +| extra_fonts/ | Optional assets* +| imconfig.h | Template for mandatory configuration file** +| imgui.cpp | +| imgui.h | +| imgui_demo.cpp | An example*** +| imgui_draw.cpp | A mandatory source file**** +| imgui_internal.h | Internal details, without guarantee of backward compatibility +| stb_* | External library + +* That should really be contained in its own repository :) +** That should really be optional :) +*** That should really be located in in `examples/` :) +**** That should really be merged with `imgui.cpp` :) +```