MParser/MApplication/IOutputView.cs

12 lines
251 B
C#

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