wuxianshengcong/Library/PackageCache/com.unity.2d.animation@9.1.2/Runtime/SpriteLib/ISpriteLibraryLabel.cs

19 lines
380 B
C#
Raw Normal View History

2025-01-02 14:49:00 +08:00
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; }
}
}