using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Toolbox.Library.Animations { /// /// Represents a group that stores animation tracks and sub groups. /// public class STAnimGroup { /// /// The name of the group. /// public string Name { get; set; } /// /// The category to place the group when displayed in the timeline. /// public string Category { get; set; } public List SubAnimGroups = new List(); public virtual List GetTracks() { return new List(); } public override string ToString() { return Name; } } }