mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
5fbf2d7713
Add front camera support for Android Allow to change the active camera in-game
19 lines
426 B
Objective-C
19 lines
426 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@protocol LocationHandlerDelegate <NSObject>
|
|
@required
|
|
- (void) SetGpsDataIOS:(CLLocation*)newLocation;
|
|
@end
|
|
|
|
@interface LocationHelper : NSObject<CLLocationManagerDelegate> {
|
|
CLLocationManager *locationManager;
|
|
}
|
|
|
|
@property(nonatomic,strong) id<LocationHandlerDelegate> delegate;
|
|
|
|
- (void) startLocationUpdates;
|
|
- (void) stopLocationUpdates;
|
|
|
|
@end
|