mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 12:20:22 -05:00
10 lines
354 B
C#
10 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);
|