From 219fb1aad601a16374cf85b1e15e092ba30212e4 Mon Sep 17 00:00:00 2001 From: Tristan Cormier Date: Sat, 1 Apr 2023 15:08:04 -0400 Subject: [PATCH] feat(console): add HIGHLIGHTSTATE enum --- src/console/Client.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/console/Client.hpp b/src/console/Client.hpp index 20540d3..a10accd 100644 --- a/src/console/Client.hpp +++ b/src/console/Client.hpp @@ -3,6 +3,14 @@ #include "gx/CGxFormat.hpp" +enum HIGHLIGHTSTATE +{ + HS_NONE = 0x0, + HS_HIGHLIGHTING = 0x1, + HS_ENDHIGHLIGHT = 0x2, + NUM_HIGHLIGHTSTATES +}; + struct DefaultSettings { CGxFormat format; };