diff options
Diffstat (limited to 'editor/ground-editor.hpp')
-rw-r--r-- | editor/ground-editor.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/ground-editor.hpp b/editor/ground-editor.hpp index a0d99813..a7de3333 100644 --- a/editor/ground-editor.hpp +++ b/editor/ground-editor.hpp @@ -10,14 +10,14 @@ namespace floormat { class world; -struct ground_info; +struct ground_cell; class ground_editor final { enum selection_mode : unsigned char { sel_none, sel_tile, sel_perm, }; struct tuple; - std::map<StringView, const ground_info*> _atlases; + std::map<StringView, const ground_cell*> _atlases; tile_image_proto _selected_tile; safe_ptr<tuple> _permutation; selection_mode _selection_mode = sel_none; |