Filtration/Filtration.ObjectModel/Enums/IconSize.cs

21 lines
467 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 sizes supported by the MinimapIcon block rule.
/// </summary>
/// <remarks>
/// The ordering here should match the ordering of the sizes within the source image.
/// </remarks>
public enum IconSize
2018-08-29 13:12:02 -04:00
{
[Description("Largest")]
Largest,
[Description("Medium")]
Medium,
[Description("Small")]
Small
}
}