19 lines
380 B
C#
19 lines
380 B
C#
namespace UnityEngine.U2D.Animation
|
|
{
|
|
/// <summary>
|
|
/// Represents a Sprite Library's label.
|
|
/// </summary>
|
|
public interface ISpriteLibraryLabel
|
|
{
|
|
/// <summary>
|
|
/// Label's name.
|
|
/// </summary>
|
|
string name { get; }
|
|
|
|
/// <summary>
|
|
/// Label's Sprite.
|
|
/// </summary>
|
|
Sprite sprite { get; }
|
|
}
|
|
}
|