namespace CMLeonOS.UILib.Animations
{
///
/// Defines the direction of an easing type.
///
internal enum EasingDirection
{
///
/// Starts the animation slowly, and finishes at full speed.
///
In,
///
/// Starts the animation at full speed, and finishes slowly.
///
Out,
///
/// Starts the animation slowly, reaches full speed at the middle, and finishes slowly.
///
InOut
}
}