mirror of
				https://github.com/chev2/botw-toolset.git
				synced 2025-10-30 08:12:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			536 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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 }
 | |
|         };
 | |
|     }
 | |
| }
 | 
