IntVector2.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : IntVector2,
return IntVector2,
	public static IntVector2 operator +(IntVector2 a, IntVector2 b) {
		return new IntVector2(a.x + b.x, a.y + b.y);
	}