| 29 | } |
| 30 | |
| 31 | void NetElementGroup::netLoad(DataStream& ds, NetCompatibilityRules rules) { |
| 32 | if (!checkWithRules(rules)) return; |
| 33 | for (auto& p : m_elements) |
| 34 | if (p.first->checkWithRules(rules)) |
| 35 | p.first->netLoad(ds, rules); |
| 36 | } |
| 37 | |
| 38 | void NetElementGroup::enableNetInterpolation(float extrapolationHint) { |
| 39 | m_interpolationEnabled = true; |
nothing calls this directly
no test coverage detected