| 14 | } |
| 15 | |
| 16 | void EffectEmitter::addEffectSources(String const& position, StringSet effectSources) { |
| 17 | for (auto& e : effectSources) |
| 18 | m_newSources.add({position, std::move(e)}); |
| 19 | } |
| 20 | |
| 21 | void EffectEmitter::setSourcePosition(String name, Vec2F const& position) { |
| 22 | m_positions[std::move(name)] = position; |
no test coverage detected