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

namespace mbgl {
namespace style {

class Light;

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

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

} // namespace style
} // namespace mbgl