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

#include <cstdint>

namespace llmr {

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

}

#endif