()
| 427 | /// ObjC classes needed for the scene lifecycle. |
| 428 | #[no_mangle] |
| 429 | pub unsafe extern "C" fn perry_register_native_classes() { |
| 430 | register_metal_view_class(); |
| 431 | register_view_controller_class(); |
| 432 | register_scene_delegate(); |
| 433 | } |
| 434 | |
| 435 | /// Called by the runtime's scene delegate when the UIWindowScene connects. |
| 436 | /// This runs on the main thread — safe for all UIKit operations. |
nothing calls this directly
no test coverage detected