mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
eb2cef10c9
Stability intensifies
18 lines
398 B
C#
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;
|
|
}
|