diff options
Diffstat (limited to 'loader/wall-traits.hpp')
-rw-r--r-- | loader/wall-traits.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/wall-traits.hpp b/loader/wall-traits.hpp index 72492d98..d0497ea4 100644 --- a/loader/wall-traits.hpp +++ b/loader/wall-traits.hpp @@ -18,10 +18,11 @@ template<> struct atlas_loader_traits<wall_atlas> static std::shared_ptr<Atlas>& atlas_of(Cell& x); static StringView name_of(const Cell& x); static StringView name_of(const Atlas& x); + static String& name_of(Cell& x); static void ensure_atlases_loaded(Storage& st); static const Cell& make_invalid_atlas(Storage& st); static std::shared_ptr<Atlas> make_atlas(StringView name, const Cell& c); - + static Optional<Cell> make_cell(StringView name); }; } // namespace floormat::loader_detail |