Exemplo n.º 1
0
        private bool Equals(Vector2 other)
        {
            IntVector2 vec = other;

            return(Equals(vec));
        }
Exemplo n.º 2
0
 private bool Equals(IntVector2 other)
 {
     return(X == other.X && Y == other.Y);
 }