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