暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISpriteLibraryLabel.cs 380B

123456789101112131415161718
  1. namespace UnityEngine.U2D.Animation
  2. {
  3. /// <summary>
  4. /// Represents a Sprite Library's label.
  5. /// </summary>
  6. public interface ISpriteLibraryLabel
  7. {
  8. /// <summary>
  9. /// Label's name.
  10. /// </summary>
  11. string name { get; }
  12. /// <summary>
  13. /// Label's Sprite.
  14. /// </summary>
  15. Sprite sprite { get; }
  16. }
  17. }