PKHeX/PKHeX.Core/Editing/Saves/BoxManipParam.cs

9 lines
190 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public struct BoxManipParam
{
public int Start { get; set; }
public int Stop { get; set; }
public bool Reverse { get; set; }
}
}