| 1196 | // == Int2 ======================================================================================= |
| 1197 | |
| 1198 | Int2::Int2() : x(0), y(0) |
| 1199 | { |
| 1200 | } |
| 1201 | |
| 1202 | Int2::Int2(int32 x_, int32 y_) : x(x_), y(y_) |
| 1203 | { |
nothing calls this directly
no outgoing calls
no test coverage detected