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

#include <mbgl/util/chrono.hpp>

#include <cstdint>

namespace mbgl {

struct PropertyTransition {
    Duration duration = Duration::zero();
    Duration delay = Duration::zero();
};

}

#endif