wuxianshengcong/Library/PackageCache/com.unity.2d.animation@9.1.2/Runtime/SpriteLib/ISpriteLibraryLabel.cs
2025-01-02 14:50:41 +08: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; }
}
}