PKHeX/PKHeX.Core/Editing/SpriteBuilderTweak.cs
Kurt eb2cef10c9 Minor clean
Stability intensifies
2022-08-22 23:18:53 -07:00

18 lines
398 B
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// Flags to tweak behavior of the sprite builder for the destination display.
/// </summary>
[Flags]
public enum SpriteBuilderTweak
{
None = 0,
BoxBackgroundRed = 1,
}
public static class SpriteBuilderTweakExtensions
{
public static bool HasFlagFast(this SpriteBuilderTweak value, SpriteBuilderTweak flag) => (value & flag) != 0;
}