13 lines
243 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
namespace DuloGames.UI.Tweens
{
internal interface ITweenValue
{
void TweenValue(float floatPercentage);
bool ignoreTimeScale { get; }
float duration { get; }
TweenEasing easing { get; }
bool ValidTarget();
void Finished();
}
}