feat(console): stub ConsoleWrite

This commit is contained in:
fallenoak 2025-10-07 20:34:16 -05:00
parent 40656dd614
commit c92ca27a06
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 6 additions and 0 deletions

View File

@ -36,3 +36,7 @@ void ConsoleSetHotKey(KEY hotkey) {
void ConsoleSetResizeState(CONSOLERESIZESTATE state) { void ConsoleSetResizeState(CONSOLERESIZESTATE state) {
s_consoleResizeState = state; s_consoleResizeState = state;
} }
void ConsoleWrite(const char* text, COLOR_T color) {
// TODO
}

View File

@ -21,4 +21,6 @@ void ConsoleSetHotKey(KEY hotkey);
void ConsoleSetResizeState(CONSOLERESIZESTATE state); void ConsoleSetResizeState(CONSOLERESIZESTATE state);
void ConsoleWrite(const char* text, COLOR_T color);
#endif // ifndef CONSOLE_CONSOLE_HPP #endif // ifndef CONSOLE_CONSOLE_HPP