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