MParser/MApplication/IOutputView.cs

14 lines
305 B
C#

namespace MApplication
{
internal interface IOutputView
{
int Width { get; }
int Height { get; }
void MoveCursorTo(int column, int line);
void ShowCursor();
void HideCursor();
void SetStyle(Style style);
void WriteText(string s);
}
}