LKS_PerspectiveManager.h 498 B

123456789101112131415161718192021222324252627
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LKS_PerspectiveManager.h
  4. // LookinServer
  5. //
  6. // Created by Li Kai on 2019/5/17.
  7. // https://lookin.work
  8. //
  9. #import "LookinDefines.h"
  10. @interface LKS_PerspectiveContainerWindow : UIWindow
  11. @end
  12. @interface LKS_PerspectiveManager : NSObject
  13. + (instancetype)sharedInstance;
  14. - (void)showWithIncludedWindows:(NSArray<UIWindow *> *)includedWindows excludedWindows:(NSArray<UIWindow *> *)excludedWindows;
  15. @end
  16. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */