------------------- EntityLink::d-tor unregister ourselves upon destruction
| 62 | // unregister ourselves upon destruction |
| 63 | // |
| 64 | EntityLink::~EntityLink() |
| 65 | { |
| 66 | if (id != INVALID_ENTITY_ID) |
| 67 | { |
| 68 | EntityLinkResolver::Instance().UnregisterLink(this); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | //------------------------------- |
| 73 | // EntityLink::SetDeserializedId |
nothing calls this directly
no test coverage detected