1 import UIKit
2 
3 @objc
4 class EXAppLoadingProgressWindowViewController: UIViewController {
5   override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
6     let visibleAppSupportedInterfaceOrientations = EXKernel
7       .sharedInstance()
8       .visibleApp
9       .viewController
10       .supportedInterfaceOrientations
11     return visibleAppSupportedInterfaceOrientations
12   }
13 }
14