Files
YarikStudio/AssetStudio/YAML/Base/MappingStyle.cs
2022-09-27 17:40:31 +04:00

19 lines
272 B
C#

namespace AssetStudio
{
/// <summary>
/// Specifies the style of a mapping.
/// </summary>
public enum MappingStyle
{
/// <summary>
/// The block mapping style.
/// </summary>
Block,
/// <summary>
/// The flow mapping style.
/// </summary>
Flow
}
}