From b02e85ae837a241ea8367b960837f99b219b4d06 Mon Sep 17 00:00:00 2001 From: Tristan Cormier Date: Sat, 4 Oct 2025 08:24:43 -0400 Subject: [PATCH] feat(console/Screen): add SetHighlightState function --- src/console/Screen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/console/Screen.cpp b/src/console/Screen.cpp index 0fb6bdc..b0816d2 100644 --- a/src/console/Screen.cpp +++ b/src/console/Screen.cpp @@ -93,6 +93,10 @@ void ResetHighlight() { s_hRect = { 0.0f, 0.0f, 0.0f, 0.0f }; } +void SetHighlightState(HIGHLIGHTSTATE state) { + s_highlightState = state; +} + void PasteInInputLine(const char* inputLine) { // TODO }