mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Reserve Console_Init() for actual console init, if code only needs colors (e.g. a console application that already has a console), then they should call Console_ColorInit().
9 lines
263 B
C
9 lines
263 B
C
#pragma once
|
|
|
|
void SetConsoleBackgroundColor(COLORREF color);
|
|
void FlashConsoleBackground(int nFlashCount, int nFlashInterval, COLORREF color);
|
|
|
|
bool Console_Init(const bool bAnsiColor, const bool bWarn = true);
|
|
bool Console_ColorInit();
|
|
bool Console_Shutdown();
|