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.
17 lines
292 B
17 lines
292 B
//
|
|
// SCFeatureTapToFocusAndExposure.h
|
|
// SCCamera
|
|
//
|
|
// Created by Michel Loenngren on 4/5/18.
|
|
//
|
|
|
|
#import "SCFeature.h"
|
|
|
|
/**
|
|
This SCFeature allows the user to tap on the screen to adjust focus and exposure.
|
|
*/
|
|
@protocol SCFeatureTapToFocusAndExposure <SCFeature>
|
|
|
|
- (void)reset;
|
|
|
|
@end
|