22 lines
364 B
Objective-C
22 lines
364 B
Objective-C
#ifdef SHOULD_COMPILE_LOOKIN_SERVER
|
|
|
|
//
|
|
// LKS_EventHandlerMaker.h
|
|
// LookinServer
|
|
//
|
|
// Created by Li Kai on 2019/8/7.
|
|
// https://lookin.work
|
|
//
|
|
|
|
#import "LookinDefines.h"
|
|
|
|
@class LookinEventHandler;
|
|
|
|
@interface LKS_EventHandlerMaker : NSObject
|
|
|
|
+ (NSArray<LookinEventHandler *> *)makeForView:(UIView *)view;
|
|
|
|
@end
|
|
|
|
#endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|