8 lines
101 B
C#

namespace Syntriax.Engine.Systems.Tween;
public interface IEasing
{
float Evaluate(float x);
}