/// <summary> /// Resizes and clears the screen /// </summary> /// <param name="width">The new width</param> /// <param name="height">The new height</param> public static void Clear(int width, int height) { Screen = new Pixel[height, width]; _last = _last.Resize(height, width); }