mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
17 lines
336 B
C#
17 lines
336 B
C#
|
using System;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum ExportFlags
|
|||
|
{
|
|||
|
None,
|
|||
|
IncludeFooter = 1 << 0,
|
|||
|
IncludeHeader = 1 << 1,
|
|||
|
}
|
|||
|
|
|||
|
public static class ExportFlagsExtensions
|
|||
|
{
|
|||
|
public static bool HasFlagFast(this ExportFlags value, ExportFlags flag) => (value & flag) != 0;
|
|||
|
}
|
|||
|
}
|