wuxianshengcong/Library/PackageCache/com.unity.2d.animation@9.1.2/Runtime/SpriteLib/ISpriteLibraryLabel.cs
2024-12-30 12:56:27 +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; }
}
}