2025-06-23 11:42:47 -07:00

18 lines
261 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
}