public static void SetBackground(this CellSurface cellSurface, int x, int y, int width, Color color) { for (int i = x; i < x + width; i++) { cellSurface.SetBackground(i, y, color); } }