| 323 | } |
| 324 | |
| 325 | void MCore::UnloadEngine() |
| 326 | { |
| 327 | if (!MRootDomain) |
| 328 | return; |
| 329 | PROFILE_CPU(); |
| 330 | CallStaticMethod<void>(GetStaticMethodPointer(TEXT("Exit"))); |
| 331 | Ready = false; |
| 332 | MDomains.ClearDelete(); |
| 333 | MRootDomain = nullptr; |
| 334 | ShutdownHostfxr(); |
| 335 | } |
| 336 | |
| 337 | void MCore::CreateScriptingAssemblyLoadContext() |
| 338 | { |
nothing calls this directly
no test coverage detected