mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-10 11:20:05 +03:00
18 lines
509 B
C#
18 lines
509 B
C#
using System.Drawing;
|
|
|
|
namespace Syroot.Worms.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Represents an interface for any class storing indexed image palette colors.
|
|
/// </summary>
|
|
public interface IPalette
|
|
{
|
|
// ---- PROPERTIES ---------------------------------------------------------------------------------------------
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="Color"/> values stored by this palette.
|
|
/// </summary>
|
|
Color[] Colors { get; set; }
|
|
}
|
|
}
|