aboutsummaryrefslogtreecommitdiff
path: root/src/game/status_manager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/status_manager.hpp')
-rw-r--r--src/game/status_manager.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/status_manager.hpp b/src/game/status_manager.hpp
index 7bb4f2f..245e888 100644
--- a/src/game/status_manager.hpp
+++ b/src/game/status_manager.hpp
@@ -24,8 +24,10 @@ public:
const StatusLineSection &section,
const std::string_view &body) noexcept override;
+ auto get_statusline() const noexcept -> std::shared_ptr<IStatusLine> override;
+
private:
std::shared_ptr<IStatusLine> _statusline;
- std::unordered_map<StatusLineSection, std::size_t> _title_lengths;
+ std::unordered_map<StatusLineSection, int32_t> _title_lengths;
};