| 262 | } |
| 263 | |
| 264 | void FClassRegistry::Unregister(const UStruct* Class) |
| 265 | { |
| 266 | const auto Desc = Find(Class); |
| 267 | if (!Desc) |
| 268 | return; |
| 269 | Desc->UnLoad(); |
| 270 | Unregister(Desc, true); |
| 271 | } |
| 272 | |
| 273 | void FClassRegistry::NotifyUObjectDeleted(UObject* Object) |
| 274 | { |
nothing calls this directly
no test coverage detected