10 lines
172 B
C#
10 lines
172 B
C#
using System;
|
|
using System.Drawing;
|
|
namespace OpenRa.FileFormats
|
|
{
|
|
public interface IPaletteRemap
|
|
{
|
|
Color GetRemappedColor(Color original, int index);
|
|
}
|
|
}
|