feat(console/Screen): add SetHighlightState function

This commit is contained in:
Tristan Cormier 2025-10-04 08:24:43 -04:00
parent f479d6ab53
commit b02e85ae83

View File

@ -93,6 +93,10 @@ void ResetHighlight() {
s_hRect = { 0.0f, 0.0f, 0.0f, 0.0f }; s_hRect = { 0.0f, 0.0f, 0.0f, 0.0f };
} }
void SetHighlightState(HIGHLIGHTSTATE state) {
s_highlightState = state;
}
void PasteInInputLine(const char* inputLine) { void PasteInInputLine(const char* inputLine) {
// TODO // TODO
} }