summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-09 07:00:52 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-09 07:00:52 +0200
commit3a16258e42b6f198c2fb4bfde45c66ee405adac4 (patch)
tree05f67703353541958122918ce6c6b5f05052310d /editor
parente7518ac6a5e09502219e798841ae9dfa497f32b5 (diff)
don't -I./src
Diffstat (limited to 'editor')
-rw-r--r--editor/app.cpp2
-rw-r--r--editor/app.hpp2
-rw-r--r--editor/draw.cpp2
-rw-r--r--editor/editor.cpp2
-rw-r--r--editor/editor.hpp6
-rw-r--r--editor/imgui-editors.cpp2
-rw-r--r--editor/inspect-types.cpp2
-rw-r--r--editor/scenery-editor.cpp2
-rw-r--r--editor/scenery-editor.hpp2
-rw-r--r--editor/tile-editor.cpp6
-rw-r--r--editor/tile-editor.hpp2
11 files changed, 15 insertions, 15 deletions
diff --git a/editor/app.cpp b/editor/app.cpp
index de1f8ef3..ace6718a 100644
--- a/editor/app.cpp
+++ b/editor/app.cpp
@@ -4,7 +4,7 @@
#include "floormat/main.hpp"
#include "floormat/settings.hpp"
#include "loader/loader.hpp"
-#include "world.hpp"
+#include "src/world.hpp"
#include "src/anim-atlas.hpp"
#include "src/critter.hpp"
#include <cerrno>
diff --git a/editor/app.hpp b/editor/app.hpp
index b86ab3b9..b0f2aa8e 100644
--- a/editor/app.hpp
+++ b/editor/app.hpp
@@ -10,7 +10,7 @@
#include "draw/box.hpp"
#include "floormat/app.hpp"
#include "keys.hpp"
-#include "object-id.hpp"
+#include "src/object-id.hpp"
#include <memory>
#include <Corrade/Containers/Pointer.h>
#include <Corrade/Containers/Optional.h>
diff --git a/editor/draw.cpp b/editor/draw.cpp
index c898ed35..429ce0fc 100644
--- a/editor/draw.cpp
+++ b/editor/draw.cpp
@@ -9,7 +9,7 @@
#include "src/world.hpp"
#include "src/critter.hpp"
-#include "rotation.inl"
+#include "src/rotation.inl"
#include "src/RTree-search.hpp"
#include <Magnum/Math/Color.h>
diff --git a/editor/editor.cpp b/editor/editor.cpp
index f91467aa..028e02fe 100644
--- a/editor/editor.cpp
+++ b/editor/editor.cpp
@@ -1,6 +1,6 @@
#include "editor.hpp"
#include "loader/loader.hpp"
-#include "tile-atlas.hpp"
+#include "src/tile-atlas.hpp"
#include "src/world.hpp"
#include "keys.hpp"
diff --git a/editor/editor.hpp b/editor/editor.hpp
index 60e257d2..8fa3a859 100644
--- a/editor/editor.hpp
+++ b/editor/editor.hpp
@@ -1,8 +1,8 @@
#pragma once
#include "compat/defs.hpp"
-#include "global-coords.hpp"
-#include "tile-image.hpp"
-#include "scenery.hpp"
+#include "src/global-coords.hpp"
+#include "src/tile-image.hpp"
+#include "src/scenery.hpp"
#include "editor-enums.hpp"
#include "tile-editor.hpp"
#include "scenery-editor.hpp"
diff --git a/editor/imgui-editors.cpp b/editor/imgui-editors.cpp
index a0aff447..5bcc8ca0 100644
--- a/editor/imgui-editors.cpp
+++ b/editor/imgui-editors.cpp
@@ -1,6 +1,6 @@
#include "app.hpp"
#include "imgui-raii.hpp"
-#include "anim-atlas.hpp"
+#include "src/anim-atlas.hpp"
#include "loader/loader.hpp"
#include "floormat/main.hpp"
#include <Magnum/Math/Color.h>
diff --git a/editor/inspect-types.cpp b/editor/inspect-types.cpp
index 5996597f..7690d91d 100644
--- a/editor/inspect-types.cpp
+++ b/editor/inspect-types.cpp
@@ -5,7 +5,7 @@
#include "src/tile-defs.hpp"
#include "inspect.hpp"
#include "loader/loader.hpp"
-#include "chunk.hpp"
+#include "src/chunk.hpp"
#include "src/critter.hpp"
#include "src/light.hpp"
diff --git a/editor/scenery-editor.cpp b/editor/scenery-editor.cpp
index 19a24e99..511e5b6a 100644
--- a/editor/scenery-editor.cpp
+++ b/editor/scenery-editor.cpp
@@ -4,7 +4,7 @@
#include "compat/assert.hpp"
#include "src/world.hpp"
#include "src/RTree-search.hpp"
-#include "rotation.inl"
+#include "src/rotation.inl"
#include "app.hpp"
#include <Magnum/Math/Range.h>
diff --git a/editor/scenery-editor.hpp b/editor/scenery-editor.hpp
index 8b497015..f3c3780b 100644
--- a/editor/scenery-editor.hpp
+++ b/editor/scenery-editor.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "scenery.hpp"
+#include "src/scenery.hpp"
#include <map>
#include <memory>
#include <Corrade/Containers/String.h>
diff --git a/editor/tile-editor.cpp b/editor/tile-editor.cpp
index 68fc0930..2dd8a16d 100644
--- a/editor/tile-editor.cpp
+++ b/editor/tile-editor.cpp
@@ -1,9 +1,9 @@
#include "tile-editor.hpp"
-#include "tile-atlas.hpp"
-#include "world.hpp"
+#include "src/tile-atlas.hpp"
+#include "src/world.hpp"
+#include "src/random.hpp"
#include "keys.hpp"
#include "loader/loader.hpp"
-#include "random.hpp"
#include "compat/exception.hpp"
#include <Corrade/Containers/PairStl.h>
#include <Corrade/Utility/Path.h>
diff --git a/editor/tile-editor.hpp b/editor/tile-editor.hpp
index 321b75c6..82f020df 100644
--- a/editor/tile-editor.hpp
+++ b/editor/tile-editor.hpp
@@ -2,7 +2,7 @@
#include "editor-enums.hpp"
#include "src/tile-image.hpp"
-#include "global-coords.hpp"
+#include "src/global-coords.hpp"
#include <vector>
#include <map>
#include <memory>