From c92ca27a065dcef988c16e72b7b8aef1afd4969a Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 7 Oct 2025 20:34:16 -0500 Subject: [PATCH] feat(console): stub ConsoleWrite --- src/console/Console.cpp | 4 ++++ src/console/Console.hpp | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/console/Console.cpp b/src/console/Console.cpp index 9ceb7f8..acc588f 100644 --- a/src/console/Console.cpp +++ b/src/console/Console.cpp @@ -36,3 +36,7 @@ void ConsoleSetHotKey(KEY hotkey) { void ConsoleSetResizeState(CONSOLERESIZESTATE state) { s_consoleResizeState = state; } + +void ConsoleWrite(const char* text, COLOR_T color) { + // TODO +} diff --git a/src/console/Console.hpp b/src/console/Console.hpp index 82d967c..9bfe4a7 100644 --- a/src/console/Console.hpp +++ b/src/console/Console.hpp @@ -21,4 +21,6 @@ void ConsoleSetHotKey(KEY hotkey); void ConsoleSetResizeState(CONSOLERESIZESTATE state); +void ConsoleWrite(const char* text, COLOR_T color); + #endif // ifndef CONSOLE_CONSOLE_HPP