diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-23 11:57:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-23 11:57:25 +0100 |
commit | a737d0cea5ca8bdcd3f9cfc38e29f8a15992ca3e (patch) | |
tree | a9eff1385f0b891dc7298477768444a1ce1113fc /loader/loader.hpp | |
parent | 14cf3a6c5acb51a953ca193289e3eb112542e9ac (diff) |
a
Diffstat (limited to 'loader/loader.hpp')
-rw-r--r-- | loader/loader.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.hpp b/loader/loader.hpp index 02c5dc67..08881ee7 100644 --- a/loader/loader.hpp +++ b/loader/loader.hpp @@ -33,7 +33,7 @@ struct loader_ virtual std::shared_ptr<class tile_atlas> tile_atlas(StringView filename) noexcept(false) = 0; virtual ArrayView<const String> anim_atlas_list() = 0; virtual std::shared_ptr<class anim_atlas> anim_atlas(StringView name, StringView dir = ANIM_PATH) noexcept(false) = 0; - virtual std::shared_ptr<class wall_atlas> wall_atlas(StringView name, bool fail_ok = true) = 0; + virtual std::shared_ptr<class wall_atlas> wall_atlas(StringView name, bool fail_ok = true) noexcept(false) = 0; virtual ArrayView<const wall_info> wall_atlas_list() = 0; static void destroy(); static loader_& default_loader() noexcept; |