| 269 | z = world->map.z_count_block; |
| 270 | } |
| 271 | void Maps::getSize (int32_t &x, int32_t &y, int32_t &z) |
| 272 | { |
| 273 | getSizeInline(x, y, z); |
| 274 | } |
| 275 | void Maps::getSize (uint32_t &x, uint32_t &y, uint32_t &z) //todo: deprecate me |
| 276 | { |
| 277 | int32_t sx, sy, sz; |
no test coverage detected