using System; namespace _TUI { public class TUI { public TUI() { } public string Generate() { int w = Console.WindowWidth; int h = Console.WindowHeight; char[,] Terminal = new char[w,h]; return ""; } } }