| 64 | class vector2 { |
| 65 | public: |
| 66 | vector2() : x(0), y(0) { |
| 67 | } |
| 68 | vector2(float x, float y) : x(x), y(y) { |
| 69 | } |
| 70 | vector2(const vector2& _vector2) : x(_vector2.x), y(_vector2.y) { |
nothing calls this directly
no outgoing calls
no test coverage detected