| 338 | } |
| 339 | |
| 340 | bool ManagedEditor::CanReloadScripts() |
| 341 | { |
| 342 | if (!HasManagedInstance()) |
| 343 | return false; |
| 344 | if (Internal_CanReloadScripts == nullptr) |
| 345 | { |
| 346 | Internal_CanReloadScripts = GetClass()->GetMethod("Internal_CanReloadScripts"); |
| 347 | ASSERT(Internal_CanReloadScripts); |
| 348 | } |
| 349 | return MUtils::Unbox<bool>(Internal_CanReloadScripts->Invoke(GetManagedInstance(), nullptr, nullptr)); |
| 350 | } |
| 351 | |
| 352 | bool ManagedEditor::CanAutoBuildCSG() |
| 353 | { |
no test coverage detected