| 1216 | // == Int3 ======================================================================================= |
| 1217 | |
| 1218 | Int3::Int3() : x(0), y(0), z(0) |
| 1219 | { |
| 1220 | } |
| 1221 | |
| 1222 | Int3::Int3(int32 x_, int32 y_, int32 z_) : x(x_), y(y_), z(z_) |
| 1223 | { |
nothing calls this directly
no outgoing calls
no test coverage detected