From 3b91516d6e039e42d6c4981bc233182698ce3221 Mon Sep 17 00:00:00 2001 From: Nigel Barink Date: Sat, 5 Nov 2022 13:47:19 +0100 Subject: [PATCH] Move Editor UI into its own 'UI' folder --- Editor/src/{ => UI}/Dialog.h | 0 Editor/src/{ => UI}/EditorConsole.cpp | 0 Editor/src/{ => UI}/EditorConsole.h | 0 Editor/src/{ => UI}/widgets.cpp | 1 + Editor/src/{ => UI}/widgets.h | 0 5 files changed, 1 insertion(+) rename Editor/src/{ => UI}/Dialog.h (100%) rename Editor/src/{ => UI}/EditorConsole.cpp (100%) rename Editor/src/{ => UI}/EditorConsole.h (100%) rename Editor/src/{ => UI}/widgets.cpp (99%) rename Editor/src/{ => UI}/widgets.h (100%) diff --git a/Editor/src/Dialog.h b/Editor/src/UI/Dialog.h similarity index 100% rename from Editor/src/Dialog.h rename to Editor/src/UI/Dialog.h diff --git a/Editor/src/EditorConsole.cpp b/Editor/src/UI/EditorConsole.cpp similarity index 100% rename from Editor/src/EditorConsole.cpp rename to Editor/src/UI/EditorConsole.cpp diff --git a/Editor/src/EditorConsole.h b/Editor/src/UI/EditorConsole.h similarity index 100% rename from Editor/src/EditorConsole.h rename to Editor/src/UI/EditorConsole.h diff --git a/Editor/src/widgets.cpp b/Editor/src/UI/widgets.cpp similarity index 99% rename from Editor/src/widgets.cpp rename to Editor/src/UI/widgets.cpp index 6273251..b38a19c 100644 --- a/Editor/src/widgets.cpp +++ b/Editor/src/UI/widgets.cpp @@ -144,6 +144,7 @@ void Viewport(Framebuffer& framebuffer, Scene& scene) { void Settings() { ImGui::Begin("Settings"); + ImGui::LabelText("##title-settings", "Fine grain control over your engine... "); ImGui::End(); } diff --git a/Editor/src/widgets.h b/Editor/src/UI/widgets.h similarity index 100% rename from Editor/src/widgets.h rename to Editor/src/UI/widgets.h