mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-02 08:49:18 +00:00
94668b4672
Clamp end box in the clear/modify actions too, just in case.
9 lines
354 B
C#
9 lines
354 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Criteria for manipulating box data.
|
|
/// </summary>
|
|
/// <param name="Start">Box to start at (inclusive)</param>
|
|
/// <param name="Stop">Box to stop after (inclusive)</param>
|
|
/// <param name="Reverse">Iterate in reverse</param>
|
|
public readonly record struct BoxManipParam(int Start, int Stop, bool Reverse = false);
|