wuxianshengcong/Library/PackageCache/com.unity.2d.aseprite@1.1.6/Editor/Aseprite/Chunks/IPaletteProvider.cs
2025-01-02 14:50:41 +08:00

10 lines
195 B
C#

using System.Collections.ObjectModel;
namespace UnityEditor.U2D.Aseprite
{
internal interface IPaletteProvider
{
public ReadOnlyCollection<PaletteEntry> entries { get; }
}
}