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

#include <mbgl/style/light.hpp>

namespace mbgl {
namespace style {

class LightObserver {
public:
    virtual ~LightObserver() = default;

    virtual void onLightChanged(const Light&) {}
};

} // namespace style
} // namespace mbgl