| 557 | return Maps::ReadFeatures(block, local, global); |
| 558 | } |
| 559 | bool Maps::ReadFeatures(int32_t x, int32_t y, int32_t z, t_feature *local, t_feature *global) |
| 560 | { |
| 561 | return ReadFeaturesInline(x, y, z, local, global); |
| 562 | } |
| 563 | bool Maps::ReadFeatures(uint32_t x, uint32_t y, uint32_t z, t_feature *local, t_feature *global) //todo: deprecate me |
| 564 | { |
| 565 | return ReadFeaturesInline(int32_t(x), int32_t(y), int32_t(z), local, global); |
nothing calls this directly
no test coverage detected