8 lines
92 B
C#

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