| 211 | } |
| 212 | |
| 213 | EntityKeyValuePtr SpawnArgs::getEntityKeyValue(const std::string& key) |
| 214 | { |
| 215 | KeyValues::const_iterator found = find(key); |
| 216 | |
| 217 | return (found != _keyValues.end()) ? found->second : EntityKeyValuePtr(); |
| 218 | } |
| 219 | |
| 220 | bool SpawnArgs::isWorldspawn() const |
| 221 | { |
no test coverage detected