Delta-v/Content.Server/AI/Utility/Curves/IResponseCurve.cs

11 lines
253 B
C#

namespace Content.Server.AI.Utility.Curves
{
/// <summary>
/// Using an interface also lets us define preset curves that can be re-used
/// </summary>
public interface IResponseCurve
{
float GetResponse(float score);
}
}