Files
2026-02-21 16:58:22 -08:00

12 lines
228 B
C#

namespace Febucci.UI.Core
{
interface EffectEvaluator
{
void Initialize(int type);
bool isEnabled { get; }
float Evaluate(float time, int characterIndex);
float GetDuration();
}
}