ShaderTools.Hlsl.Formatting.FormattingOptions.FormattingOptions C# (CSharp) Method

FormattingOptions() public method

public FormattingOptions ( ) : System
return System
        public FormattingOptions()
        {
            Indentation = new IndentationOptions();
            NewLines = new NewLinesOptions();
            Spacing = new SpacingOptions();

            SpacesPerIndent = 4;
            NewLine = Environment.NewLine;
        }
    }
FormattingOptions