mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-21 09:53:14 +00:00
d7e1f65faa
Not much of a git diff history for these files so I don't mind them being reformatted.
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 at (exclusive)</param>
|
|
/// <param name="Reverse">Iterate in reverse</param>
|
|
public readonly record struct BoxManipParam(int Start, int Stop, bool Reverse = false);
|