summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLSource.h
blob: b08a09ec4df5064519ba2dfb4f16722a15183739 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>

@interface MGLSource : NSObject

@property (nonatomic, copy) NSString *sourceIdentifier;
@property (nonatomic, copy) NSString *sourceType;

- (instancetype)initWithSourceIdentifier:(NSString *)sourceIdentifier sourceType:(NSString *)sourceType;

@end