butterflow-ui/butterflow-ui/RegionType.cs

22 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace butterflow_ui
{
/// <summary> Values that represent subregion types. </summary>
[Serializable]
public enum RegionType
{
/// <summary> Speed. </summary>
spd,
/// <summary> Duration. </summary>
dur,
/// <summary> Frames per second. </summary>
fps
}
}