mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-07 03:49:19 +08:00
19 lines
272 B
C#
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
|
|
}
|
|
}
|