mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
19 lines
277 B
C#
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
|
|
}
|
|
}
|