| 72 | } |
| 73 | |
| 74 | void OnSet(const Guid& id) |
| 75 | { |
| 76 | if (_id == id) |
| 77 | return; |
| 78 | if (_object) |
| 79 | _object->Deleted.Unbind<SoftObjectReferenceBase, &SoftObjectReferenceBase::OnDeleted>(this); |
| 80 | _object = nullptr; |
| 81 | _id = id; |
| 82 | Changed(); |
| 83 | } |
| 84 | |
| 85 | void OnResolve(MClass* type) |
| 86 | { |
no outgoing calls
no test coverage detected