| 83 | } |
| 84 | |
| 85 | void OnResolve(MClass* type) |
| 86 | { |
| 87 | ASSERT(!_object); |
| 88 | _object = FindObject(_id, type); |
| 89 | if (_object) |
| 90 | _object->Deleted.Bind<SoftObjectReferenceBase, &SoftObjectReferenceBase::OnDeleted>(this); |
| 91 | } |
| 92 | |
| 93 | void OnDeleted(ScriptingObject* obj) |
| 94 | { |
nothing calls this directly
no test coverage detected