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

operator() public static méthode

public static operator ( ) : Int3
Résultat Int3
		public static Int3 operator - (Int3 lhs, Int3 rhs) {
			lhs.x -= rhs.x;
			lhs.y -= rhs.y;
			lhs.z -= rhs.z;
			return lhs;
		}
		

Same methods

Int3::operator ( ) : bool