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

#include <cstdint>

namespace mbgl {

struct PropertyTransition {
    uint16_t duration = 0;
    uint16_t delay = 0;
};

}

#endif