mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-08 11:17:19 -05:00
11 lines
223 B
C#
11 lines
223 B
C#
|
using OpenDiablo2.Common.Models;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace OpenDiablo2.Common.Interfaces
|
|||
|
{
|
|||
|
public interface IPaletteProvider
|
|||
|
{
|
|||
|
Dictionary<string, Palette> PaletteTable { get; }
|
|||
|
}
|
|||
|
}
|