aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/scene.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-23 19:41:31 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:57 +0200
commit486ca3846b46dc229e5807968578809766ec1991 (patch)
tree65a4b7a746d6305666af06f8a1975c76244085a7 /src/engine/graphics/scene.hpp
parentb8e86ce397dc07320c02f6a5f592c7c6a4421c86 (diff)
feat: implement generations & multithreading
Diffstat (limited to 'src/engine/graphics/scene.hpp')
-rw-r--r--src/engine/graphics/scene.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/engine/graphics/scene.hpp b/src/engine/graphics/scene.hpp
index 1f1c51c..c4f6d67 100644
--- a/src/engine/graphics/scene.hpp
+++ b/src/engine/graphics/scene.hpp
@@ -12,10 +12,6 @@
constexpr fmt::string_view ENABLE_ALT_BUFFER = "{esc}[?1049h";
constexpr fmt::string_view DISABLE_ALT_BUFFER = "{esc}[?1049l";
-constexpr fmt::string_view ERASE_ENTIRE_LINE = "{esc}[2K";
-
-constexpr uint32_t STATUSBAR_COLOR = 0x1A1A1AU;
-
class Scene : public IScene
{
public:
@@ -27,8 +23,6 @@ public:
void leave() noexcept override;
- void write_status(const std::string_view &str) noexcept override;
-
[[nodiscard]] const std::shared_ptr<IMatrix<std::string_view>> &
get_matrix() const noexcept override;