diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-20 21:45:12 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-20 21:45:12 +0100 |
commit | 82ff8045a633e064e145616041c272b7c9e9cd30 (patch) | |
tree | e8d000e7ab6bc0a00be034f1e605c8faee298aef /src/world.hpp | |
parent | a16964cc466bc2e174007b9dfa21a2cb35d63315 (diff) |
w
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.hpp b/src/world.hpp index 4ffac90d..88927166 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -69,7 +69,7 @@ public: const auto& chunks() const noexcept { return _chunks; } void serialize(StringView filename); - static world deserialize(StringView filename); + static world deserialize(StringView filename) noexcept(false); void set_collect_threshold(size_t value) { _collect_every = value; } size_t collect_threshold() const noexcept { return _collect_every; } auto frame_no() const { return _current_frame; } |