PKHeX/PKHeX.Core/Editing/Saves/BoxManipParam.cs
Kurt f57e7bf686 Separate box manipulator to ui-less class
clear separation of functionality
2018-09-02 11:31:34 -07:00

9 lines
No EOL
190 B
C#

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