feat: basic tween system added

This commit is contained in:
2025-03-31 19:38:01 +03:00
parent cd2cd89eae
commit 9f3e39e337
9 changed files with 362 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace Syntriax.Engine.Systems.Tween;
public interface IEasing
{
float Evaluate(float value);
}