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