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
512 B
22 lines
512 B
//
|
|
// SCCaptureImageWhileRecordingState.h
|
|
// Snapchat
|
|
//
|
|
// Created by Sun Lei on 22/02/2018.
|
|
//
|
|
|
|
#import "SCCaptureBaseState.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCQueuePerformer;
|
|
|
|
@interface SCCaptureImageWhileRecordingState : SCCaptureBaseState
|
|
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
|
|
- (instancetype)initWithPerformer:(SCQueuePerformer *)performer
|
|
bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
|
|
delegate:(id<SCCaptureStateDelegate>)delegate;
|
|
|
|
@end
|