| 89 | |
| 90 | bool operator==(const Vector2 &v) const { return x == v.x && y == v.y; } |
| 91 | bool operator!=(const Vector2 &v) const { return x != v.x || y != v.y; } |
| 92 | |
| 93 | private: |
| 94 | float x, y; |
nothing calls this directly
no outgoing calls
no test coverage detected