public BorderConsole(int width, int height) : base(width, height) { textSurface.Font = Settings.Config.ScreenFont; Renderer = new CachedTextSurfaceRenderer(textSurface); PrepBox(); }
public CachedConsoleConsole() : base(80, 25) { IsVisible = false; FillWithRandomGarbage(); cachedRenderer = new CachedTextSurfaceRenderer(TextSurface); oldRenderer = _renderer; }