1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00

Subregions auto update. ButterflowWrapper now calls butterflow.exe

This commit is contained in:
Jordan Wages 2018-07-02 23:31:16 -05:00
commit d0b29f20fd
11 changed files with 604 additions and 35 deletions

View file

@ -0,0 +1,20 @@
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>
public enum RegionType
{
/// <summary> Speed. </summary>
spd,
/// <summary> Duration. </summary>
dur,
/// <summary> Frames per second. </summary>
fps
}
}