Files
YarikStudio/AssetStudio/YAML/Base/MappingStyle.cs
2023-09-22 20:31:55 +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
}
}