using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Editors { /// /// Represents modes enumeration to be used with . /// [Serializable] public enum AnimationSetupMode { /// /// Directs the method to return a linear animations. /// Linear, /// /// Directs the method to return a discrete animations (no duration). /// Discrete } }