summaryrefslogtreecommitdiffhomepage
path: root/loader/loader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/loader.hpp')
-rw-r--r--loader/loader.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/loader.hpp b/loader/loader.hpp
index 8056fa8c..2da6b361 100644
--- a/loader/loader.hpp
+++ b/loader/loader.hpp
@@ -10,7 +10,7 @@ namespace Magnum::Trade { template<uint32_t> class ImageData; using ImageData2D
namespace floormat {
-struct serialized_scenery;
+struct scenery_cell;
namespace loader_detail {}
namespace Serialize {}
@@ -38,7 +38,7 @@ struct loader_
virtual void destroy() = 0;
static loader_& default_loader() noexcept;
virtual ArrayView<const ground_cell> ground_atlas_list() noexcept(false) = 0; // todo maybe try returning
- virtual ArrayView<const serialized_scenery> sceneries() = 0;
+ virtual ArrayView<const scenery_cell> sceneries() = 0;
virtual const scenery_proto& scenery(StringView name) noexcept(false) = 0;
virtual StringView startup_directory() noexcept = 0;
static StringView strip_prefix(StringView name);