Sign in
skia
/
external
/
github.com
/
rive-app
/
rive-cpp
/
c4e0646edcf4a6b53257c2ce8d521041074d20b0
/
.
/
include
/
rive
/
animation
/
easing.hpp
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