refactor: IEasing.Evaluate parameter renamed to x

This commit is contained in:
2025-04-05 22:46:11 +03:00
parent d1129c95df
commit 906edf096e
2 changed files with 40 additions and 40 deletions

View File

@@ -2,6 +2,6 @@ namespace Syntriax.Engine.Systems.Tween;
public interface IEasing
{
float Evaluate(float value);
float Evaluate(float x);
}