| 127 | struct Point2i : public pgl_point2i |
| 128 | { |
| 129 | Point2i(const pgl_point2i &p) |
| 130 | { |
| 131 | this->x = p.x; |
| 132 | this->y = p.y; |
| 133 | } |
| 134 | Point2i(int32_t x, int32_t y) |
| 135 | { |
| 136 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected