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