summaryrefslogtreecommitdiffhomepage
path: root/loader/impl.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-01-11 13:54:53 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-01-11 14:11:47 +0100
commit7867213a01fcabb1f05b1836c2ca59dc3bb2132f (patch)
tree44af754bed0278c8bf3435df6278bd291c3043e5 /loader/impl.hpp
parent74cf06b6b217eff32a547cf73f051f27e6b80919 (diff)
rename tile_atlas -> ground_atlas
Diffstat (limited to 'loader/impl.hpp')
-rw-r--r--loader/impl.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/loader/impl.hpp b/loader/impl.hpp
index d88174ba..165b7c2f 100644
--- a/loader/impl.hpp
+++ b/loader/impl.hpp
@@ -59,12 +59,12 @@ struct loader_impl final : loader_
std::shared_ptr<class wall_atlas> get_wall_atlas(StringView name, StringView path);
// >-----> tile >----->
- tsl::robin_map<StringView, std::shared_ptr<class tile_atlas>> tile_atlas_map;
- std::vector<std::shared_ptr<class tile_atlas>> tile_atlas_array;
+ tsl::robin_map<StringView, std::shared_ptr<class ground_atlas>> ground_atlas_map;
+ std::vector<std::shared_ptr<class ground_atlas>> ground_atlas_array;
- ArrayView<const std::shared_ptr<class tile_atlas>> tile_atlases(StringView filename) noexcept(false) override;
- std::shared_ptr<class tile_atlas> tile_atlas(StringView filename, Vector2ub size, pass_mode pass) noexcept(false) override;
- std::shared_ptr<class tile_atlas> tile_atlas(StringView filename) noexcept(false) override;
+ ArrayView<const std::shared_ptr<class ground_atlas>> ground_atlases(StringView filename) noexcept(false) override;
+ std::shared_ptr<class ground_atlas> ground_atlas(StringView filename, Vector2ub size, pass_mode pass) noexcept(false) override;
+ std::shared_ptr<class ground_atlas> ground_atlas(StringView filename) noexcept(false) override;
// >-----> anim >----->
tsl::robin_map<StringView, std::shared_ptr<class anim_atlas>> anim_atlas_map;