mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
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);
|