PKHeX/PKHeX.Core/Saves/Util/BinaryExportSetting.cs

12 lines
148 B
C#
Raw Normal View History

using System;
namespace PKHeX.Core;
[Flags]
public enum BinaryExportSetting
{
None,
IncludeFooter = 1 << 0,
IncludeHeader = 1 << 1,
}