using System.Drawing; namespace Syroot.Worms.Graphics { /// /// Represents an interface for any class storing indexed image palette colors. /// public interface IPalette { // ---- PROPERTIES --------------------------------------------------------------------------------------------- /// /// Gets or sets the values stored by this palette. /// Color[] Colors { get; set; } } }