1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-07-11 23:41:32 -05:00
butterflow-ui/butterflow-ui/RegionType.cs
Jordan Wages 3af7fd2b2c Advanced Options
Added several advanced options.
2018-07-03 23:26:42 -05:00

21 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
}
}