123456789101112131415161718192021222324 |
- #ifdef SHOULD_COMPILE_LOOKIN_SERVER
- //
- // LKS_PerspectiveItemLayer.h
- // LookinServer
- //
- // Created by Li Kai on 2019/5/17.
- // https://lookin.work
- //
- #import <QuartzCore/QuartzCore.h>
- #import "LookinDisplayItem.h"
- @interface LKS_PerspectiveItemLayer : CALayer
- @property(nonatomic, strong) LookinDisplayItem *displayItem;
- - (void)reRender;
- @end
- #endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|