using System.ComponentModel; namespace Filtration.ObjectModel.Enums { /// /// Each of the shapes supported by the MinimapIcon block rule. /// /// /// The ordering here should match the ordering of the shapes within the source image. /// public enum IconShape { [Description("Circle")] Circle, [Description("Diamond")] Diamond, [Description("Hexagon")] Hexagon, [Description("Square")] Square, [Description("Star")] Star, [Description("Triangle")] Triangle } }