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.

20 lines
370 B

  1. //
  2. // SCFeatureFlash.h
  3. // SCCamera
  4. //
  5. // Created by Kristian Bauer on 3/27/18.
  6. //
  7. #import "SCFeature.h"
  8. @class SCNavigationBarButtonItem;
  9. /**
  10. * Public interface for interacting with camera flash feature.
  11. */
  12. @protocol SCFeatureFlash <SCFeature>
  13. @property (nonatomic, readonly) SCNavigationBarButtonItem *navigationBarButtonItem;
  14. - (void)interruptGestures;
  15. @end