aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-19 13:28:29 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:56 +0200
commit3dbf3b68c484704aafcda9fd05ae88a0337956ef (patch)
treeb7a2d45811c0ed5e336f87c23369f3929322b0cc /src/interfaces
parent55c93fe609888be73677317978959040cf35b2ff (diff)
feat: add inserting cells
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/scene.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/scene.hpp b/src/interfaces/scene.hpp
index 47df5fa..0443d41 100644
--- a/src/interfaces/scene.hpp
+++ b/src/interfaces/scene.hpp
@@ -16,6 +16,9 @@ public:
virtual void leave() noexcept = 0;
virtual void write_status(const std::string_view &str) noexcept = 0;
+
+ [[nodiscard]] virtual const std::shared_ptr<IMatrix<std::string_view>> &
+ get_matrix() const noexcept = 0;
};
using ISceneFactory = std::shared_ptr<IScene> (*)(