Pathfinding.Int3.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( System o ) : bool
o System
Résultat bool
		public override bool Equals (System.Object o) {
			
			if (o == null) return false;
			
			Int3 rhs = (Int3)o;
			
			return 	x == rhs.x &&
					y == rhs.y &&
					z == rhs.z;
		}