From a00ac8b5fed9d03cb2b3eafb4cd7d04546e341b1 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 25 Oct 2022 16:19:21 +0200 Subject: move some headers around --- editor/app.cpp | 4 ++-- editor/app.hpp | 2 +- editor/camera.cpp | 2 +- editor/draw.cpp | 2 +- editor/events.cpp | 4 ++-- editor/imgui.cpp | 2 +- editor/update.cpp | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) (limited to 'editor') diff --git a/editor/app.cpp b/editor/app.cpp index f89aa002..e28f1a72 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -1,7 +1,7 @@ #include "app.hpp" #include "compat/assert.hpp" -#include "main/floormat-main.hpp" -#include "main/floormat.hpp" +#include "floormat/main.hpp" +#include "floormat/settings.hpp" #include "src/loader.hpp" #include "world.hpp" #include diff --git a/editor/app.hpp b/editor/app.hpp index 663b4923..1cf118f9 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -6,7 +6,7 @@ #include "draw/wireframe-mesh.hpp" #include "draw/wireframe-quad.hpp" #include "draw/wireframe-box.hpp" -#include "main/floormat-app.hpp" +#include "floormat/app.hpp" #include #include diff --git a/editor/camera.cpp b/editor/camera.cpp index 529f55e9..300f0c61 100644 --- a/editor/camera.cpp +++ b/editor/camera.cpp @@ -1,7 +1,7 @@ #include "app.hpp" #include "src/global-coords.hpp" #include "shaders/tile-shader.hpp" -#include "main/floormat-main.hpp" +#include "floormat/main.hpp" #include namespace floormat { diff --git a/editor/draw.cpp b/editor/draw.cpp index 4150bc27..2b047c6b 100644 --- a/editor/draw.cpp +++ b/editor/draw.cpp @@ -1,5 +1,5 @@ #include "app.hpp" -#include "main/floormat-main.hpp" +#include "floormat/main.hpp" #include "shaders/tile-shader.hpp" #include diff --git a/editor/events.cpp b/editor/events.cpp index cfa0b904..cd846a96 100644 --- a/editor/events.cpp +++ b/editor/events.cpp @@ -1,7 +1,7 @@ #include "app.hpp" -#include "main/floormat-main.hpp" -#include "main/floormat-events.hpp" +#include "floormat/main.hpp" +#include "floormat/events.hpp" #include "src/world.hpp" #include diff --git a/editor/imgui.cpp b/editor/imgui.cpp index b627d34f..7a34f5fc 100644 --- a/editor/imgui.cpp +++ b/editor/imgui.cpp @@ -1,5 +1,5 @@ #include "app.hpp" -#include "main/floormat-main.hpp" +#include "floormat/main.hpp" #include #include "imgui-raii.hpp" diff --git a/editor/update.cpp b/editor/update.cpp index 734ed7b5..c0595c45 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -1,7 +1,7 @@ #include "app.hpp" #include "src/chunk.hpp" -#include "main/floormat-events.hpp" -#include "main/floormat-main.hpp" +#include "floormat/events.hpp" +#include "floormat/main.hpp" namespace floormat { -- cgit v1.2.3