diff --git a/61_UI/include/nbl/this_example/common.hpp b/61_UI/include/common.hpp similarity index 62% rename from 61_UI/include/nbl/this_example/common.hpp rename to 61_UI/include/common.hpp index 796cab2c6..02111303d 100644 --- a/61_UI/include/nbl/this_example/common.hpp +++ b/61_UI/include/common.hpp @@ -8,9 +8,8 @@ #include "SimpleWindowedApplication.hpp" #include "CEventCallback.hpp" -// example's own headers -#include "nbl/this_example/transform.hpp" -#include "nbl/this_example/renderpass/scene.hpp" -//#include "nbl/this_example/renderpass/ui.hpp" +// the example's headers +#include "transform.hpp" +#include "scene.hpp" #endif // __NBL_THIS_EXAMPLE_COMMON_H_INCLUDED__ \ No newline at end of file diff --git a/61_UI/include/nbl/this_example/renderpass/ui.hpp b/61_UI/include/nbl/this_example/renderpass/ui.hpp deleted file mode 100644 index 6fce57a0c..000000000 --- a/61_UI/include/nbl/this_example/renderpass/ui.hpp +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef __NBL_THIS_EXAMPLE_UI_H_INCLUDED__ -#define __NBL_THIS_EXAMPLE_UI_H_INCLUDED__ - -class CUI -{ -public: - -private: - -}; - -#endif // __NBL_THIS_EXAMPLE_UI_H_INCLUDED__ \ No newline at end of file diff --git a/61_UI/include/nbl/this_example/renderpass/scene.hpp b/61_UI/include/scene.hpp similarity index 100% rename from 61_UI/include/nbl/this_example/renderpass/scene.hpp rename to 61_UI/include/scene.hpp diff --git a/61_UI/include/nbl/this_example/transform.hpp b/61_UI/include/transform.hpp similarity index 99% rename from 61_UI/include/nbl/this_example/transform.hpp rename to 61_UI/include/transform.hpp index 127b9b472..db79b442e 100644 --- a/61_UI/include/nbl/this_example/transform.hpp +++ b/61_UI/include/transform.hpp @@ -5,7 +5,7 @@ #include "nbl/ext/ImGui/ImGui.h" #include "imgui/imgui_internal.h" #include "imguizmo/ImGuizmo.h" -#include "renderpass/scene.hpp" +#include "scene.hpp" struct TransformRequestParams { diff --git a/61_UI/main.cpp b/61_UI/main.cpp index 6e83fd98e..12b4985db 100644 --- a/61_UI/main.cpp +++ b/61_UI/main.cpp @@ -2,7 +2,7 @@ // This file is part of the "Nabla Engine". // For conditions of distribution and use, see copyright notice in nabla.h -#include "nbl/this_example/common.hpp" +#include "common.hpp" using namespace nbl; using namespace core;