| 209 | } |
| 210 | |
| 211 | void EntityDescription::AddNavMeshConnnectionVec(EntityDescriptionFieldType type, const std::vector<NavMeshConnectionData>& val) { |
| 212 | AddType(type); |
| 213 | fields.back().WriteNavMeshConnectionDataVec(val); |
| 214 | } |
| 215 | |
| 216 | void EntityDescription::AddType(EntityDescriptionFieldType type) { |
| 217 | fields.resize(fields.size() + 1); |
no test coverage detected