Pathfinding.Int2.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( System o ) : bool
o System
리턴 bool
		public override bool Equals (System.Object o) {
			if (o == null) return false;
			Int2 rhs = (Int2)o;
			
			return x == rhs.x && y == rhs.y;
		}