Pathfinding.Int2.FromInt3XZ C# (CSharp) Method

FromInt3XZ() public static method

public static FromInt3XZ ( Int3 o ) : Int2
o Int3
return Int2
		public static Int2 FromInt3XZ (Int3 o) {
			return new Int2 (o.x,o.z);
		}