summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_render_parameters.hpp
blob: 16ce99177a3166e67b6179656139ec336ea42cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef STYLE_RENDER_PARAMETERS
#define STYLE_RENDER_PARAMETERS

namespace mbgl {

class TransformState;

class StyleRenderParameters {
public:
    StyleRenderParameters(const TransformState& state_)
        : state(state_) {}

    const TransformState& state;
};

}

#endif