1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChat/Features/Flash/SCFlashButton.h
2018-05-24 00:22:14 +03:00

16 lines
389 B
Objective-C

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