mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
23 lines
364 B
C#
23 lines
364 B
C#
namespace AssetRipper.Yaml;
|
|
|
|
/// <summary>
|
|
/// Specifies the style of a Yaml scalar.
|
|
/// </summary>
|
|
public enum ScalarStyle
|
|
{
|
|
/// <summary>
|
|
/// The plain scalar style.
|
|
/// </summary>
|
|
Plain,
|
|
|
|
/// <summary>
|
|
/// The single-quoted scalar style.
|
|
/// </summary>
|
|
SingleQuoted,
|
|
|
|
/// <summary>
|
|
/// The double-quoted scalar style.
|
|
/// </summary>
|
|
DoubleQuoted,
|
|
}
|