23 lines
414 B
Objective-C
23 lines
414 B
Objective-C
#ifdef SHOULD_COMPILE_LOOKIN_SERVER
|
|
|
|
//
|
|
// LKS_CustomDisplayItemsMaker.h
|
|
// LookinServer
|
|
//
|
|
// Created by likai.123 on 2023/11/1.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class LookinDisplayItem;
|
|
|
|
@interface LKS_CustomDisplayItemsMaker : NSObject
|
|
|
|
- (instancetype)initWithLayer:(CALayer *)layer saveAttrSetter:(BOOL)saveAttrSetter;
|
|
|
|
- (NSArray<LookinDisplayItem *> *)make;
|
|
|
|
@end
|
|
|
|
#endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|