mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-16 05:18:41 +00:00
17 lines
No EOL
336 B
C#
17 lines
No EOL
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;
|
|
}
|
|
} |