Files
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01:00

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; }
}
}