LKS_PerspectiveViewController.h 517 B

12345678910111213141516171819202122232425
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LKS_PerspectiveViewController.h
  4. // LookinServer
  5. //
  6. // Created by Li Kai on 2019/5/17.
  7. // https://lookin.work
  8. //
  9. #import <UIKit/UIKit.h>
  10. @class LookinHierarchyInfo, LKS_PerspectiveToolbarCloseButton;
  11. @interface LKS_PerspectiveViewController : UIViewController
  12. - (instancetype)initWithHierarchyInfo:(LookinHierarchyInfo *)info;
  13. @property(nonatomic, strong, readonly) LKS_PerspectiveToolbarCloseButton *closeButton;
  14. @end
  15. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */