| 57 | |
| 58 | struct Direction { |
| 59 | Direction(float x = 0.0f, float y = 0.0f) : x(x), y(y) {} |
| 60 | |
| 61 | bool operator==(const Direction &other) const { |
| 62 | return x == other.x && y == other.y; |
nothing calls this directly
no outgoing calls
no test coverage detected