| 167 | } |
| 168 | |
| 169 | void NavmeshConnectionObject::GetDesc(EntityDescription& desc) const { |
| 170 | Object::GetDesc(desc); |
| 171 | desc.AddString(EDF_FILE_PATH, ""); |
| 172 | desc.AddNavMeshConnnectionVec(EDF_NAV_MESH_CONNECTIONS, connections); |
| 173 | } |
| 174 | |
| 175 | bool NavmeshConnectionObject::SetFromDesc(const EntityDescription& desc) { |
| 176 | bool ret = Object::SetFromDesc(desc); |
nothing calls this directly
no test coverage detected