ppsspp/ios/LocationHelper.h
Florin9doi 5fbf2d7713 Add camera/location support for iOS
Add front camera support for Android
Allow to change the active camera in-game
2020-01-25 16:54:45 +02:00

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