botw-toolset/Resources/BOTW/PinLocations.cs
2021-02-03 18:06:47 -08:00

18 lines
536 B
C#

namespace BOTWToolset.Resources.BOTW
{
public static class PinLocations
{
//Shrine locations - {x, z} coordinates
public static int[][] MajorToSLocations = new int[][]
{
new int[] { -4400, -3832 },
new int[] { -3704, -3056 },
new int[] { -2808, -2888 },
new int[] { 3776, -2752 },
new int[] { -176, -1208 },
new int[] { -3472, -448 },
new int[] { -4632, 992 },
new int[] { 4016, 2992 }
};
}
}