mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
9401b7a790
help dat compiler minor clean elsewhere
22 lines
No EOL
812 B
C#
22 lines
No EOL
812 B
C#
namespace PKHeX.Core
|
|
{
|
|
public readonly struct BoxManipParam
|
|
{
|
|
public readonly int Start;
|
|
public readonly int Stop;
|
|
public readonly bool Reverse;
|
|
|
|
public BoxManipParam(int start, int stop, bool reverse = false)
|
|
{
|
|
Start = start;
|
|
Stop = stop;
|
|
Reverse = reverse;
|
|
}
|
|
|
|
public bool Equals(BoxManipParam p) => p.Start == Start && p.Stop == Stop && p.Reverse == Reverse;
|
|
public override bool Equals(object obj) => obj is BoxManipParam p && Equals(p);
|
|
public override int GetHashCode() => -1;
|
|
public static bool operator ==(BoxManipParam left, BoxManipParam right) => left.Equals(right);
|
|
public static bool operator !=(BoxManipParam left, BoxManipParam right) => !(left == right);
|
|
}
|
|
} |