summaryrefslogtreecommitdiffhomepage
path: root/editor/editor.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-01-11 13:54:53 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-01-11 14:11:47 +0100
commit7867213a01fcabb1f05b1836c2ca59dc3bb2132f (patch)
tree44af754bed0278c8bf3435df6278bd291c3043e5 /editor/editor.hpp
parent74cf06b6b217eff32a547cf73f051f27e6b80919 (diff)
rename tile_atlas -> ground_atlas
Diffstat (limited to 'editor/editor.hpp')
-rw-r--r--editor/editor.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/editor.hpp b/editor/editor.hpp
index dc897bc3..fae85c2f 100644
--- a/editor/editor.hpp
+++ b/editor/editor.hpp
@@ -4,7 +4,7 @@
#include "src/tile-image.hpp"
#include "src/scenery.hpp"
#include "editor-enums.hpp"
-#include "tile-editor.hpp"
+#include "ground-editor.hpp"
#include "wall-editor.hpp"
#include "scenery-editor.hpp"
#include "vobj-editor.hpp"
@@ -16,7 +16,7 @@ namespace floormat {
struct world;
class anim_atlas;
-class tile_atlas;
+class ground_atlas;
struct app;
struct editor final
@@ -26,8 +26,8 @@ struct editor final
[[nodiscard]] editor_mode mode() const noexcept { return _mode; }
void set_mode(editor_mode mode);
- tile_editor* current_ground_editor() noexcept;
- const tile_editor* current_ground_editor() const noexcept;
+ ground_editor* current_ground_editor() noexcept;
+ const ground_editor* current_ground_editor() const noexcept;
wall_editor* current_wall_editor() noexcept;
const wall_editor* current_wall_editor() const noexcept;
scenery_editor* current_scenery_editor() noexcept;
@@ -57,7 +57,7 @@ private:
app* _app;
- tile_editor _floor;
+ ground_editor _floor;
wall_editor _wall;
scenery_editor _scenery;
vobj_editor _vobj;