diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:40:18 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:40:18 +0100 |
commit | 07018b1d1247f4fb558a2b551dd8d4ca35346377 (patch) | |
tree | 51ee528771fbb77ee1f62adf38a1d8cca1c8ac8c /loader/wall-cell.hpp | |
parent | 626e49662839a1ecd505547a5671d1ab8ac5b4aa (diff) |
switch back to using StringView in atlas loader
Diffstat (limited to 'loader/wall-cell.hpp')
-rw-r--r-- | loader/wall-cell.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/loader/wall-cell.hpp b/loader/wall-cell.hpp index e8cd15d5..541a8339 100644 --- a/loader/wall-cell.hpp +++ b/loader/wall-cell.hpp @@ -1,5 +1,4 @@ #pragma once -#include "compat/vector-wrapper-fwd.hpp" #include <memory> #include <Corrade/Containers/String.h> @@ -12,7 +11,7 @@ struct wall_cell std::shared_ptr<wall_atlas> atlas; String name; - static vector_wrapper<const wall_cell> load_atlases_from_json(); + static Array<wall_cell> load_atlases_from_json(); }; } // namespace floormat |