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

#include <cstdint>
#include <chrono>

namespace mbgl {

struct PropertyTransition {
    std::chrono::steady_clock::duration duration = std::chrono::steady_clock::duration::zero();
    std::chrono::steady_clock::duration delay = std::chrono::steady_clock::duration::zero();
};

}

#endif