mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
19 lines
437 B
C#
19 lines
437 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Coordinate / Index Relationship for a Generation 2 Headbutt Tree
|
||
|
/// </summary>
|
||
|
internal sealed class TreeCoordinates
|
||
|
{
|
||
|
public readonly int X;
|
||
|
public readonly int Y;
|
||
|
public readonly int Index;
|
||
|
|
||
|
public TreeCoordinates(int x, int y)
|
||
|
{
|
||
|
X = x;
|
||
|
Y = y;
|
||
|
Index = ((X * Y) + X + Y) / 5 % 10;
|
||
|
}
|
||
|
}
|
||
|
}
|