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.
22 lines
480 B
22 lines
480 B
//
|
|
// SCCaptureImageState.h
|
|
// Snapchat
|
|
//
|
|
// Created by Lin Jia on 1/8/18.
|
|
//
|
|
|
|
#import "SCCaptureBaseState.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCQueuePerformer;
|
|
|
|
@interface SCCaptureImageState : SCCaptureBaseState
|
|
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
|
|
- (instancetype)initWithPerformer:(SCQueuePerformer *)performer
|
|
bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
|
|
delegate:(id<SCCaptureStateDelegate>)delegate;
|
|
|
|
@end
|