diff options
Diffstat (limited to 'src/engine/graphics/scene.hpp')
-rw-r--r-- | src/engine/graphics/scene.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/graphics/scene.hpp b/src/engine/graphics/scene.hpp index e57e1f8..60b541a 100644 --- a/src/engine/graphics/scene.hpp +++ b/src/engine/graphics/scene.hpp @@ -17,7 +17,7 @@ class Scene : public IScene { public: explicit Scene( - IMatrixFactory<std::string_view> matrix_factory, + IMatrixFactory<MatrixElement> matrix_factory, std::shared_ptr<ICursorController> cursor_controller) noexcept; void enter() noexcept override; @@ -27,10 +27,10 @@ public: [[nodiscard]] auto size() const noexcept -> Bounds override; [[nodiscard]] auto get_matrix() const noexcept - -> const std::shared_ptr<IMatrix<std::string_view>> & override; + -> const std::shared_ptr<IMatrix<MatrixElement>> & override; private: - std::shared_ptr<IMatrix<std::string_view>> _matrix; + std::shared_ptr<IMatrix<MatrixElement>> _matrix; std::shared_ptr<ICursorController> _cursor_controller; bool _is_shown; |