| 345 | } |
| 346 | |
| 347 | NetworkReplicatedObject* ResolveObject(Guid objectId) |
| 348 | { |
| 349 | auto it = Objects.Find(objectId); |
| 350 | if (it != Objects.End()) |
| 351 | return &it->Item; |
| 352 | IdsRemappingTable.TryGet(objectId, objectId); |
| 353 | it = Objects.Find(objectId); |
| 354 | return it != Objects.End() ? &it->Item : nullptr; |
| 355 | } |
| 356 | |
| 357 | NetworkReplicatedObject* ResolveObject(Guid objectId, Guid parentId, const StringAnsiView& objectTypeName) |
| 358 | { |
no test coverage detected