Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
11 lines
253 B
C#
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);
|
|
}
|
|
}
|