Pathfinding.Int2.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;
			Int2 rhs = (Int2)o;
			
			return x == rhs.x && y == rhs.y;
		}