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.

15 lines
389 B

  1. //
  2. // SCFlashButton.h
  3. // SCCamera
  4. //
  5. // Created by Will Wu on 2/13/14.
  6. // Copyright (c) 2014 Snapchat, Inc. All rights reserved.
  7. //
  8. #import <SCUIKit/SCGrowingButton.h>
  9. typedef NS_ENUM(NSInteger, SCFlashButtonState) { SCFlashButtonStateOn = 0, SCFlashButtonStateOff = 1 };
  10. @interface SCFlashButton : SCGrowingButton
  11. @property (nonatomic, assign) SCFlashButtonState buttonState;
  12. @end