// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Animation
{
public interface IEasing
{
object Ease(double progress, object start, object finish);
}
public interface IEasing : IEasing
{
T Ease(double progress, T start, T finish);
}
}