2018-11-26 19:07:46 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using OpenDiablo2.Common.Models;
|
2018-11-22 00:18:42 -05:00
|
|
|
|
|
|
|
|
|
namespace OpenDiablo2.Common.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IPaletteProvider
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, Palette> PaletteTable { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|