Filtration/Filtration.ObjectModel/Enums/IconColor.cs

26 lines
561 B
C#
Raw Permalink Normal View History

2018-08-29 13:12:02 -04:00
using System.ComponentModel;
namespace Filtration.ObjectModel.Enums
2018-09-06 20:01:16 -04:00
{
/// <summary>
/// Each of the colors supported by the MinimapIcon block rule.
/// </summary>
/// <remarks>
/// The ordering here should match the ordering of the colors within the source image.
/// </remarks>
public enum IconColor
2018-08-29 13:12:02 -04:00
{
2018-09-06 20:01:16 -04:00
[Description("Blue")]
Blue,
[Description("Green")]
Green,
[Description("Brown")]
Brown,
[Description("Red")]
2018-08-29 13:12:02 -04:00
Red,
[Description("White")]
White,
[Description("Yellow")]
Yellow
}
}