aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/scene.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-10 21:03:50 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:55 +0200
commit19f5d93dba74dda1fd1a9211707d98b6dd9b19ba (patch)
treeed2576cbcd54655d0b006991cc8834d2c95c64f0 /src/engine/graphics/scene.hpp
parentc988905add09cf8baf46dc61279528f6f39f7a1a (diff)
feat: add status bar background color
Diffstat (limited to 'src/engine/graphics/scene.hpp')
-rw-r--r--src/engine/graphics/scene.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine/graphics/scene.hpp b/src/engine/graphics/scene.hpp
index 3d05cd9..22a96a4 100644
--- a/src/engine/graphics/scene.hpp
+++ b/src/engine/graphics/scene.hpp
@@ -14,6 +14,8 @@ 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: