diff options
Diffstat (limited to 'editor/ground-editor.hpp')
-rw-r--r-- | editor/ground-editor.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/ground-editor.hpp b/editor/ground-editor.hpp index 46c9dc3a..9ff9a198 100644 --- a/editor/ground-editor.hpp +++ b/editor/ground-editor.hpp @@ -11,6 +11,7 @@ namespace floormat { struct world; +struct ground_info; class ground_editor final { @@ -23,7 +24,7 @@ class ground_editor final std::vector<decltype(tile_image_proto::variant)> variant; }; - std::map<StringView, std::shared_ptr<ground_atlas>> _atlases; + std::map<StringView, const ground_info*> _atlases; tile_image_proto _selected_tile; tuple _permutation; selection_mode _selection_mode = sel_none; |