summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLLight_Private.h
blob: dbc29c1eff7e27956b4ff4a88841791bba0c3970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import <Foundation/Foundation.h>

#import "MGLLight.h"

namespace mbgl {
    namespace style {
        class Light;
    }
}

@interface MGLLight (Private)

/**
 Initializes and returns a `MGLLight` associated with a style's light.
 */
- (instancetype)initWithMBGLLight:(const mbgl::style::Light *)mbglLight;

/**
 Returns an `mbgl::style::Light` representation of the `MGLLight`.
 */
- (mbgl::style::Light)mbglLight;

@end