8 lines
105 B
C#
8 lines
105 B
C#
namespace Syntriax.Engine.Systems.Tween;
|
|
|
|
public interface IEasing
|
|
{
|
|
float Evaluate(float value);
|
|
}
|
|
|