mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
feat(console): stub ConsoleWrite
This commit is contained in:
parent
40656dd614
commit
c92ca27a06
@ -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
|
||||||
|
}
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user