| 1155 | // == Int3 ======================================================================================= |
| 1156 | |
| 1157 | Uint3::Uint3() : x(0), y(0), z(0) |
| 1158 | { |
| 1159 | } |
| 1160 | |
| 1161 | Uint3::Uint3(uint32 x_, uint32 y_, uint32 z_) : x(x_), y(y_), z(z_) |
| 1162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected