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.

22 lines
512 B

  1. //
  2. // SCCaptureImageWhileRecordingState.h
  3. // Snapchat
  4. //
  5. // Created by Sun Lei on 22/02/2018.
  6. //
  7. #import "SCCaptureBaseState.h"
  8. #import <Foundation/Foundation.h>
  9. @class SCQueuePerformer;
  10. @interface SCCaptureImageWhileRecordingState : SCCaptureBaseState
  11. SC_INIT_AND_NEW_UNAVAILABLE
  12. - (instancetype)initWithPerformer:(SCQueuePerformer *)performer
  13. bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
  14. delegate:(id<SCCaptureStateDelegate>)delegate;
  15. @end