blob: 46fd9732f1351ab839c40949825db106e8d6e3dc [file] [log] [blame]
#ifndef _RIVE_EASING_HPP_
#define _RIVE_EASING_HPP_
#include <cstdint>
namespace rive
{
enum class Easing : uint8_t
{
easeIn = 0,
easeOut = 1,
easeInOut = 2
};
}
#endif