Net-Game/Library/PackageCache/com.unity.2d.aseprite@1f731787b516/Editor/Aseprite/Chunks/IPaletteProvider.cs
2025-03-28 08:33:16 -04:00

10 lines
195 B
C#

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