Files
2026-07-16 21:49:59 +01:00

21 lines
468 B
C#

using System.Collections.Generic;
namespace UnityEngine.U2D.Animation
{
/// <summary>
/// Represents a Sprite Library's category.
/// </summary>
public interface ISpriteLibraryCategory
{
/// <summary>
/// Category's name.
/// </summary>
string name { get; }
/// <summary>
/// Labels contained in the Category.
/// </summary>
IEnumerable<ISpriteLibraryLabel> labels { get; }
}
}