13 lines
467 B
C
13 lines
467 B
C
#pragma once
|
|
|
|
|
|
void Console_Init(short Left, short Top, short Width, short Height, short bottomScrollHeight);
|
|
void Console_Cls();
|
|
void Console_SetWindowPosition(int x, int y);
|
|
bool Console_SetCursorVisibility(bool visible);
|
|
void Console_SetCursor(short x, short y);
|
|
void Console_Write(const char *text);
|
|
void Console_WriteAt(short x, short y, const char *text);
|
|
void Console_ScrollBottomRegion();
|
|
bool Console_AdvanceToNextLineIfNotRoomFor(short x, int scroll = -1);
|