aboutsummaryrefslogtreecommitdiff
path: root/src/game/status_updater.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/status_updater.hpp')
-rw-r--r--src/game/status_updater.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/game/status_updater.hpp b/src/game/status_updater.hpp
deleted file mode 100644
index 0fd38a7..0000000
--- a/src/game/status_updater.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-
-#include "interfaces/generation_tracker.hpp"
-#include "interfaces/status_updater.hpp"
-#include "interfaces/statusline.hpp"
-#include "interfaces/subscriber.hpp"
-
-#include "engine/data/vector2.hpp"
-
-#include <memory>
-
-class StatusUpdater : public IStatusUpdater
-{
-public:
- explicit StatusUpdater(
- std::shared_ptr<IStatusLine> statusline,
- std::shared_ptr<IGenerationTracker> generation_tracker
- ) noexcept;
-
- void update(const Vector2 &context) noexcept override;
-
-private:
- std::shared_ptr<IStatusLine> _statusline;
- std::shared_ptr<IGenerationTracker> _generation_tracker;
-};