MyBook/Library/PackageCache/com.unity.2d.aseprite@1.1.6/Editor/Aseprite/Chunks/IPaletteProvider.cs

10 lines
195 B
C#
Raw Normal View History

2025-03-22 14:59:41 +08:00
using System.Collections.ObjectModel;
namespace UnityEditor.U2D.Aseprite
{
internal interface IPaletteProvider
{
public ReadOnlyCollection<PaletteEntry> entries { get; }
}
}