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 shapes supported by the MinimapIcon block rule.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// The ordering here should match the ordering of the shapes within the source image.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public enum IconShape
|
2018-08-29 13:12:02 -04:00
|
|
|
|
{
|
|
|
|
|
[Description("Circle")]
|
|
|
|
|
Circle,
|
|
|
|
|
[Description("Diamond")]
|
|
|
|
|
Diamond,
|
|
|
|
|
[Description("Hexagon")]
|
|
|
|
|
Hexagon,
|
|
|
|
|
[Description("Square")]
|
|
|
|
|
Square,
|
|
|
|
|
[Description("Star")]
|
|
|
|
|
Star,
|
|
|
|
|
[Description("Triangle")]
|
|
|
|
|
Triangle
|
|
|
|
|
}
|
|
|
|
|
}
|