Pathfinding.Int2.FromInt3XZ C# (CSharp) Méthode

FromInt3XZ() public static méthode

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