mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-30 08:20:24 +00:00
19 lines
427 B
C#
19 lines
427 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Toolbox.Library.Animations
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents a group that stores animation tracks and sub groups.
|
|||
|
/// </summary>
|
|||
|
public class STAnimGroup
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public List<STAnimGroup> SubAnimGroups = new List<STAnimGroup>();
|
|||
|
}
|
|||
|
}
|