2014 snapchat source code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//
// SCFeatureLensButtonZ.h
// SCCamera
//
// Created by Anton Udovychenko on 4/24/18.
//
#import "AVCameraViewEnums.h"
#import "SCFeature.h"
#import <Foundation/Foundation.h>
@protocol SCFeatureLensButtonZ; @class SCGrowingButton, SCLens;
NS_ASSUME_NONNULL_BEGIN
@protocol SCFeatureLensButtonZDelegate <NSObject> - (void)featureLensZButton:(id<SCFeatureLensButtonZ>)featureLensZButton didPressLensButton:(SCGrowingButton *)lensButton; - (nullable NSArray<SCLens *> *)allLenses; @end
@protocol SCFeatureLensButtonZ <SCFeature>
@property (nonatomic, weak) id<SCFeatureLensButtonZDelegate> delegate;
- (void)setLensButtonActive:(BOOL)active;
@end
NS_ASSUME_NONNULL_END
|