public static bool Equals(IntVector2 a, IntVector2 b) { return(a.x == b.x && a.y == b.y); }
public IntVector2(IntVector2 v) { _x = v.x; _y = v.y; }