summaryrefslogtreecommitdiff
path: root/src/mbgl/style/light_property.hpp
blob: 11a2bdf4c961670652f013afa267ed6d923311ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <mbgl/style/properties.hpp>
#include <mbgl/style/property_value.hpp>
#include <mbgl/renderer/property_evaluator.hpp>

namespace mbgl {
namespace style {

template <class T>
class LightProperty {
public:
    using EvaluatorType = PropertyEvaluator<T>;
    using Type = T;
    static constexpr bool IsDataDriven = false;
};

} // namespace style
} // namespace mbgl