2023-01-14 11:31:39 -05:00

19 lines
277 B
C#

namespace AssetRipper.Yaml
{
/// <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
}
}