namespace PKHeX.Core; /// /// Criteria for manipulating box data. /// /// Box to start at (inclusive) /// Box to stop at (exclusive) /// Iterate in reverse public readonly record struct BoxManipParam(int Start, int Stop, bool Reverse = false);