| 88 | } |
| 89 | |
| 90 | std::vector<std::string> EffectFactory::GetSpawnableEffects() |
| 91 | { |
| 92 | std::vector<std::string> effects; |
| 93 | for (auto iter = mFactoryMap.begin(); iter != mFactoryMap.end(); ++iter) |
| 94 | effects.push_back(iter->first); |
| 95 | sort(effects.begin(), effects.end()); |
| 96 | return effects; |
| 97 | } |
no outgoing calls
no test coverage detected