mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-07 03:49:19 +08:00
29 lines
427 B
C#
29 lines
427 B
C#
namespace AssetStudio
|
|
{
|
|
/// <summary>
|
|
/// Specifies the style of a YAML scalar.
|
|
/// </summary>
|
|
public enum ScalarStyle
|
|
{
|
|
/// <summary>
|
|
/// The plain scalar style.
|
|
/// </summary>
|
|
Plain,
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Hex,
|
|
|
|
/// <summary>
|
|
/// The single-quoted scalar style.
|
|
/// </summary>
|
|
SingleQuoted,
|
|
|
|
/// <summary>
|
|
/// The double-quoted scalar style.
|
|
/// </summary>
|
|
DoubleQuoted,
|
|
}
|
|
}
|