MCPcopy Create free account
hub / github.com/DFHack/dfhack / ReadFeatures

Method ReadFeatures

library/modules/Maps.cpp:559–562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

557 return Maps::ReadFeatures(block, local, global);
558}
559bool 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}
563bool 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);

Callers

nothing calls this directly

Calls 2

ReadFeaturesInlineFunction · 0.85
GetLocalFeatureFunction · 0.85

Tested by

no test coverage detected